forked from danivek/json-api-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "json-api-serializer",
"version": "1.6.0",
"description": "Framework agnostic JSON API serializer.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/istanbul cover --print both ./node_modules/mocha/bin/_mocha -- -R spec ./test/**/*.js",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"json",
"json-api",
"jsonapi",
"json api",
"serializer"
],
"author": "Kévin Danielo",
"repository": "danivek/json-api-serializer",
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"bson-objectid": "^1.1.4",
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
},
"dependencies": {
"into-stream": "^3.1.0",
"joi": "^8.0.3",
"lodash": "^4.5.1",
"stream-to-array": "^2.3.0",
"through2": "^2.0.3",
"unique-stream": "^2.2.1"
}
}