-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 968 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
33
34
{
"name": "nodejs-lib-example",
"version": "1.3.0",
"description": "A Node.js library example.",
"main": "src/index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "jshint . && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neverendingqs-sandbox/nodejs-example.git"
},
"keywords": [
"nodejs",
"travis-ci",
"coveralls",
"npm"
],
"author": "neverendingqs",
"license": "MIT",
"bugs": {
"url": "https://github.com/neverendingqs-sandbox/nodejs-example/issues"
},
"homepage": "https://github.com/neverendingqs-sandbox/nodejs-example#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0"
}
}