forked from holidayextras/jsonapi-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "jsonapi-server",
"version": "0.6.0",
"description": "A fully featured NodeJS sever implementation of json:api. You provide the resources, we provide the api.",
"keywords": [
"json:api",
"jsonapi",
"api"
],
"main": "lib/jsonApi.js",
"author": "Oliver Rumbelow",
"license": "GPL-3.0",
"repository" : {
"type" : "git",
"url" : "https://github.com/holidayextras/jsonapi-server"
},
"engines" : {
"node" : "*"
},
"dependencies": {
"async": "0.9.2",
"body-parser": "1.12.4",
"express": "4.12.4",
"joi": "6.4.1",
"request": "2.55.0",
"underscore": "1.8.3",
"node-uuid": "1.4.3"
},
"devDependencies": {
"mocha": "2.2.5",
"eslint": "0.24.0",
"blanket": "1.1.7",
"mocha-lcov-reporter": "0.0.2",
"coveralls": "2.11.2"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec ./test/*.js",
"start": "node example/server.js",
"coveralls": "./node_modules/mocha/bin/mocha --require blanket --reporter mocha-lcov-reporter ./test/*.js | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "./node_modules/mocha/bin/mocha --require blanket --reporter html-cov ./test/*.js > coverage.html",
"lint": "./node_modules/.bin/eslint ./example/*.js ./lib/*.js ./test/*.js --quiet && echo '✔ All good!'"
},
"config": {
"blanket": {
"pattern": ".js",
"data-cover-never": [
"node_modules",
"test",
"example"
]
}
}
}