forked from dwyl/learn-tdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "learn-tdd",
"version": "1.0.2",
"description": "learn test driven development (TDD) using QUnit!",
"main": "index.html",
"scripts": {
"codeclimate": "CODECLIMATE_REPO_TOKEN=7498136cff114e83c81fe6e2839f9538d865f9bdee4eb41d25d2058a9110713c ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
"test": "node test.js",
"coverage": "istanbul cover test.js",
"open-coverage": "open ./coverage/lcov-report/index.html",
"start": "./node_modules/.bin/nodemon static-server.js",
"docs": "./node_modules/jsdoc/jsdoc.js change.js",
"open-docs": "open ./out/global.html#getChange"
},
"repository": {
"type": "git",
"url": "https://github.com/dwyl/learn-tdd.git"
},
"keywords": [
"learn",
"tdd",
"testing",
"tutorial",
"beginner"
],
"author": "nelsonic <[email protected]> (https://github.com/nelsonic)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/learn-tdd/issues"
},
"homepage": "https://github.com/dwyl/learn-tdd",
"devDependencies": {
"codeclimate-test-reporter": "0.1.1",
"hapi": "^10.0.0",
"inert": "^3.0.1",
"istanbul": "^0.3.20",
"jsdoc": "^3.3.2",
"nodemon": "^1.5.1",
"qunit-tap": "^1.5.0",
"qunitjs": "^1.19.0"
}
}