-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
50
51
52
{
"name": "booljs",
"version": "0.9.4",
"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",
"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": {
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.5",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"nyc": "^14.1.1"
},
"dependencies": {
"@booljs/api": "^0.6.4",
"chalk": "^2.4.2",
"coffeescript": "^2.5.1",
"cson": "^5.1.0",
"readyness": "^0.1.0",
"yaml": "^1.8.2"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}