forked from danivek/json-api-serializer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 KB
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
{
"name": "@c2cs/json-api-serializer",
"version": "1.15.2",
"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",
"bench": "node benchmark/index.js"
},
"keywords": [
"json",
"json-api",
"jsonapi",
"json api",
"serializer"
],
"author": "Kévin Danielo",
"repository": {
"type" : "git",
"url" : "https://github.com/c2cs/json-api-serializer.git"
},
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bson-objectid": "^1.1.4",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"istanbul": "^0.4.2",
"mocha": "^5.2.0"
},
"dependencies": {
"into-stream": "^3.1.0",
"joi": "^12.0.0",
"lodash": "^4.5.1",
"stream-to-array": "^2.3.0",
"through2": "^2.0.3",
"unique-stream": "^2.2.1"
}
}