-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 KB
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
{
"name": "vanilla-jasmine",
"version": "1.0.0",
"description": "Testing NodeJS vanilla http server with jasmine",
"main": "app\\server.js",
"dependencies": {},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.1",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"istanbul": "^0.4.5",
"jasmine": "^2.6.0"
},
"scripts": {
"vanilla-jasmine": "node vanilla-jasmine/src/index.js",
"vanilla-jasmine-test": "istanbul cover vanilla-jasmine/spec/index.js",
"vanilla-jasmine-coverage": "istanbul cover vanilla-jasmine/spec/index.js",
"report-coverage": "npm run script report-coverage:coveralls & npm run script report-coverage:codeclimate",
"report-coverage:coveralls": "cat ./coverage/lcov.info | coveralls",
"report-coverage:codeclimate": "cross-env CODECLIMATE_REPO_TOKEN=4cc379a927597359590431e4c81655d109e3be94e15269ad0cbf9701ec50c98f codeclimate-test-reporter < coverage/lcov.info",
"start": "npm run vanilla-jasmine",
"test": "npm run vanilla-jasmine-test",
"coverage": "npm run vanilla-jasmine-coverage"
},
"repository": {
"type": "git",
"url": "node-examples"
},
"keywords": [
"Node",
"Examplels",
"vanilla http server",
"jasmine"
],
"author": "Bernard Badenhorst",
"license": "ISC"
}