-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
55 lines (55 loc) · 1.1 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "learn-tape",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/learn-tape.git"
},
"description": "Simple Test Driven Development (TDD) Tutorial using Tape",
"author": "dwyl & friends!",
"devDependencies": {
"browserify": "^17.0.0",
"jsdom": "^16.4.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"tap": "^14.11.0",
"tap-nyc": "^1.0.3",
"tape": "^5.1.1",
"testling": "^1.7.3"
},
"scripts": {
"test": "nyc tape ./test/*.test.js | tap-nyc",
"front-end-test": "tape ./front-end-testing/test-complete/* | tap-nyc"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.spec.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"report-dir": "./coverage"
},
"pre-commit": [
"test",
"front-end-test"
],
"license": "MIT",
"keywords": [
"tape",
"tap",
"tutorial",
"how to"
]
}