-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "monument-cli",
"version": "5.1.0",
"description": "monumentjs cli",
"license": "MIT",
"main": "bin/monument",
"bin": {
"monument": "./bin/monument"
},
"repository": "https://github.com/ansble/monumentjs-cli.git",
"author": {
"name": "Daniel Sellers",
"email": "",
"url": "https://github.com/designfrontier"
},
"engines": {
"node": "10"
},
"scripts": {
"lint": "bin/lint.js",
"release": "npm test && echo ' => releasing' && tom",
"release:minor": "npm test && echo ' => releasing' && tom --type=minor",
"release:major": "npm test && echo ' => releasing' && tom --type=major",
"test": "npm run lint && nyc ava modules/*.test.js"
},
"keywords": [
"monument",
"nodejs",
"server"
],
"preferGlobal": true,
"dependencies": {
"chalk": "2.4.0",
"commander": "2.17.1",
"dot": "1.1.1",
"escodegen": "1.11.0",
"esprima": "4.0.1",
"js-beautify": "1.7.5",
"ncp": "2.0.0",
"ora": "3.0.0",
"prompt": "1.0.0",
"semver": "5.5.0",
"tom-sawyer": "^0.1.5"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "5.0.1",
"minimist": "1.2.0",
"nyc": "^12.0.1",
"monument": "5.1.4"
}
}