forked from vinitshahdeo/ParkingLot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1010 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
35
36
37
38
39
40
{
"name": "parking_lot",
"version": "1.0.0",
"description": "Parking lot design problem",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node src/index.js",
"test": "nyc --reporter=html --reporter=text node scripts/test.js",
"test-unit": "mocha tests/specs.js",
"test-lint": "node scripts/test-lint.js",
"test-system": "mocha scripts/test-system.js",
"file-mode": "node src/index.js",
"build": "node scripts/build.js",
"create-docs": "node scripts/create-docs.js",
"help": "node src/config/config.js"
},
"keywords": [
"parking",
"lot",
"gojek",
"nodejs",
"oops"
],
"author": "Vinit Shahdeo <[email protected]>",
"license": "ISC",
"devDependencies": {
"async": "3.1.0",
"chai": "4.2.0",
"chalk": "3.0.0",
"eslint": "6.6.0",
"nyc": "14.1.1",
"parse-gitignore": "1.0.1",
"pkg": "4.4.0",
"recursive-readdir-synchronous": "0.0.4",
"shelljs": "0.8.3"
}
}