-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "json-api-serializer",
"version": "2.6.6",
"description": "Framework agnostic JSON API serializer.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"test": "./node_modules/.bin/nyc --reporter=lcov --reporter=text --reporter=text-summary ./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": "danivek/json-api-serializer",
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bson-objectid": "^2.0.1",
"chai": "^4.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prettier": "^5.0.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.0"
},
"dependencies": {
"setimmediate": "^1.0.5"
}
}