-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 921 Bytes
/
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
{
"name": "nodebelt",
"version": "1.2.0",
"description": "A set of tools to be used with Node.Js",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover --dir ./reports _mocha -- -R spec test/*.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=d170f3f62b642c80f76c311e28a6320e0560a86bb293cb5c21084f4d0df074ac codeclimate-test-reporter < reports/lcov.info",
"test": "mocha -R spec test/*.js",
"ci": "npm run test && npm run coverage && npm run codeclimate",
"deploy": "npm deploy && npm run ci"
},
"repository": {
"type": "git",
"url": "https://github.com/Askerad/nodebelt.git"
},
"keywords": [
"toolbelt",
"utils",
"log"
],
"author": "Charles \"Askerad\" Stieffenhofer",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.5.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.1"
}
}