-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 874 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "gilded-rose-node",
"version": "1.0.0",
"description": "Gilded Rose Refactoring Kata in NodeJS",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albert-gonzalez/gilded-rose-nodejs.git"
},
"keywords": [
"gilded",
"rose",
"refactoring",
"kata",
"nodejs"
],
"author": "Albert Gonzalez",
"license": "ISC",
"bugs": {
"url": "https://github.com/albert-gonzalez/gilded-rose-nodejs/issues"
},
"homepage": "https://github.com/albert-gonzalez/gilded-rose-nodejs#readme",
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.5"
}
}