-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
75 lines (75 loc) · 1.73 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "hyped",
"version": "1.0.2",
"description": "Hypermedia response generation engine",
"main": "src/index.js",
"dependencies": {
"lodash": "^4.x",
"pluralize": "^8.0.0",
"request": "^2.55.0",
"when": "^3.x"
},
"devDependencies": {
"autohost": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^3.5.0"
},
"scripts": {
"test:only": "NODE_ENV=test mocha --exit -R spec 'spec/**/*.spec.js'",
"test:ci": "NODE_ENV=test mocha --exit -R spec 'spec/behavior/**/*.spec.js'",
"test": "npm run cover",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:ci": "nyc -r text-summary -r html -- npm run test:ci",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"repository": {
"type": "git",
"url": "git://github.com/LeanKit-Labs/hyped"
},
"keywords": [
"hypermedia",
"autohost",
"express"
],
"author": "LeanKit",
"contributors": [
{
"name": "Alex Robson",
"url": "http://nerdventure.io"
},
{
"name": "Doug Neiner",
"url": "http://dougneiner.com"
},
{
"name": "Jim Cowart",
"url": "http://ifandelse.com"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LeanKit-Labs/hyped/issues"
},
"homepage": "https://github.com/LeanKit-Labs/hyped",
"nyc": {
"exclude": [
"config.local.*",
"coverage",
"configs",
"spec",
".eslintrc.js"
],
"sourceMap": false,
"instrument": true,
"all": true
}
}