-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
63 lines (63 loc) · 1.14 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
56
57
58
59
60
61
62
63
{
"name": "quotesy",
"version": "1.0.10",
"description": "A collection of inspiring quotes to fuel your progress!",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"quotes.json"
],
"scripts": {
"test": "nyc tape ./test/*.test.js | tap-nyc",
"jsonlint": "node node_modules/.bin/jsonlint quotes.json -q"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/quotes.git"
},
"keywords": [
"quotes",
"collection",
"database"
],
"author": "dwyl & friends",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/quotes/issues"
},
"homepage": "https://github.com/dwyl/quotes#readme",
"devDependencies": {
"jsonlint": "^1.6.3",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"tape": "^4.11.0",
"tap-nyc": "^1.0.3"
},
"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": [
"jsonlint",
"test"
]
}