forked from dwyl/learn-tdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 987 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
35
36
37
38
39
40
41
42
{
"name": "learn-tdd",
"version": "1.0.9",
"description": "learn test driven development (TDD) using QUnit!",
"main": "index.html",
"scripts": {
"test": "istanbul cover test.js",
"open-coverage": "open ./coverage/lcov-report/index.html",
"start": "live-server --port=8000",
"docs": "jsdoc change.js",
"open-docs": "open ./out/global.html"
},
"repository": {
"type": "git",
"url": "https://github.com/dwyl/learn-tdd.git"
},
"keywords": [
"learn",
"tdd",
"testing",
"tutorial",
"beginner",
"test driven development",
"JavaScript",
"qunit",
"browser",
"front-end"
],
"author": "dwyl & friends!",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/learn-tdd/issues"
},
"homepage": "https://github.com/dwyl/learn-tdd",
"devDependencies": {
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"live-server": "^1.1.0",
"qunit-tap": "^1.5.0",
"qunitjs": "^2.0.0-rc1"
}
}