-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
41 lines (41 loc) · 1023 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
41
{
"name": "gcp",
"version": "1.0.0",
"description": "Emulation engine for GCP",
"main": "index.js",
"scripts": {
"start": "node bin/clocal-gcp",
"dev": "nodemon bin/clocal-gcp",
"test": "ava ./src/**/*.spec.js",
"test:coverage": "nyc ava ./src/**/*.spec.js",
"test-watch": "ava --watch"
},
"bin": {
"clocal-gcp": "./bin/clocal-gcp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dilantha111/clocal-gcp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dilantha111/clocal-gcp/issues"
},
"homepage": "https://github.com/cloudlibz/clocal-gcp/blob/master/README.md",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"configstore": "^3.1.2",
"express": "^4.16.3",
"ora": "^2.0.0"
},
"devDependencies": {
"@types/core-js": "^0.9.46",
"@types/express": "^4.11.1",
"@types/node": "^8.0.0",
"ava": "1.0.0-beta.6",
"nodemon": "^1.17.3",
"nyc": "^13.1.0"
}
}