-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1 KB
/
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
42
43
44
45
46
{
"name": "allcountjs-cli",
"version": "1.0.4",
"description": "AllcountJS command line interface",
"main": "./bin/allcount.js",
"scripts": {
"pretest": "jshint .",
"test": "./node_modules/.bin/mocha --reporter spec --bail --check-leaks test/"
},
"preferGlobal": true,
"bin": {
"allcountjs": "./bin/allcount.js"
},
"repository": {
"type": "git",
"url": "https://github.com/allcount/allcountjs-cli"
},
"keywords": [
"rapid",
"business",
"application",
"development",
"data-centric",
"RAD"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/allcount/allcountjs-cli/issues"
},
"homepage": "http://allcountjs.com",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^3.2.0",
"jshint": "^2.8.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"rimraf": "^2.4.2"
},
"dependencies": {
"commander": "^2.8.1",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"readline": "0.0.8",
"request": "^2.60.0"
}
}