-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "json-api-response-js",
"version": "1.0.7",
"description": "JSON API Standard compliant http response library.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "jest test",
"test-with-coverage": "jest --coverage",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmilagroso/json-api-response-js.git"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
],
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js"
]
},
"engines": {
"node": "8.16.0"
},
"keywords": [
"js",
"json",
"api",
"response"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmilagroso/json-api-response-js/issues"
},
"homepage": "https://github.com/jmilagroso/json-api-response-js#readme",
"devDependencies": {
"coveralls": "^3.0.4",
"eslint": "^9.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"husky": "^9.0.11",
"jest": "^29.6.1"
},
"dependencies": {
"jsonapi-serializer": "^3.6.4",
"typcheckjs": "^1.2.1"
}
}