-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "@coding-blocks/express-jsonapi-controller",
"version": "1.3.0",
"description": "Generic Base Controller for express to generate JSON API response",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"lint": "eslint index.js example lib",
"lint:fix": "eslint index.js example lib --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coding-blocks/express-jsonapi-controller.git"
},
"keywords": [
"Express",
"JSON",
"API",
"controller"
],
"author": "Abhishek Gupta <[email protected]> (http://itsabhishek.me)",
"contributors": [
"Jatin Katyal <[email protected]>"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/coding-blocks/express-jsonapi-controller/issues"
},
"homepage": "https://github.com/coding-blocks/express-jsonapi-controller#readme",
"dependencies": {
"assert": "^1.4.1",
"i": "^0.3.6",
"jsonapi-serializer": "^3.6.4",
"ramda": "^0.26.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4"
},
"eslintIgnore": [
"node_modules/"
]
}