forked from pwcampbell/GildedRose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 837 Bytes
/
package.json
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
{
"name": "gildedrose",
"version": "1.0.0",
"description": "Inventory management for the Gilded Rose",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "./node_modules/.bin/eslint ./ && ./node_modules/.bin/mocha Tests/Unit --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sternam/GildedRose.git"
},
"keywords": [],
"author": "Allen Merlin Stern",
"license": "ISC",
"bugs": {
"url": "https://github.com/sternam/GildedRose/issues"
},
"homepage": "https://github.com/sternam/GildedRose#readme",
"dependencies": {
"readline-sync": "1.4.10"
},
"devDependencies": {
"chai": "^4.3.7",
"deep-equal-in-any-order": "^2.0.1",
"eslint": "^8.30.0",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}