forked from BoolJS/booljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
47
48
49
{
"name": "booljs",
"version": "0.8.3",
"description": "Bool MVC Framework - Bootstraping Unit",
"main": "lib/index.js",
"license": "GPL-3.0",
"author": {
"name": "Pablo Andrés Dorado Suárez",
"email": "[email protected]",
"url": "https://bool.js.org/developers/pandres95"
},
"scripts": {
"coverage": "nyc --reporter=lcov npm run unit -- -R dot && codecov",
"lint": "eslint **/*.js",
"unit": "cross-env NODE_ENV=test mocha --exit --timeout 5000 --recursive test",
"test": "npm run lint && npm run unit && npm run coverage",
"predoc": "rm -rf doc",
"doc": "jsdoc -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "http://github.com/booljs/booljs"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jsdoc": "^3.4.3",
"mocha": "^4.1.0",
"nyc": "^11.9.0"
},
"dependencies": {
"@booljs/api": "^0.6.3",
"coffeescript": "^2.3.2",
"cson": "^4.0.0",
"readyness": "^0.1.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}