-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "asicjs",
"version": "0.0.0",
"description": "ASiC library for JavaScript (by Brainbean Apps)",
"main": "lib/index.js",
"scripts": {
"jsdoc": "jsdoc --destination ./docs --recurse ./lib --verbose",
"lint": "standard",
"test": "nyc --reporter=none mocha",
"coverage": "nyc report --reporter=html --reporter=text",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm run lint && npm run test",
"postversion": "git push && git push --tags"
},
"engines": {
"node": "8.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brainbeanapps/asicjs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/brainbeanapps/asicjs/issues"
},
"homepage": "https://github.com/brainbeanapps/asicjs#readme",
"dependencies": {
"bluebird": "^3.5.1",
"check-types": "^7.3.0",
"lodash": "^4.17.4",
"winston": "^2.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"standard": "^10.0.3"
}
}