-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "restify-formatter-jsonapi",
"version": "2.0.0",
"description": "Restify jsonapi formatter",
"main": "./lib/index.js",
"scripts": {
"compile": "babel ./src -d ./lib",
"prepublish": "npm run compile",
"lint": "eslint ./src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeomatic/restify-formatter-jsonapi.git"
},
"author": "Vitaly Aminev <v@makeomatic.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeomatic/restify-formatter-jsonapi/issues"
},
"homepage": "https://github.com/makeomatic/restify-formatter-jsonapi#readme",
"dependencies": {
"is": "^3.1.0",
"json-stringify-safe": "^5.0.1"
},
"peerDependencies": {
"restify": "5.x.x"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-register": "^6.9.0",
"eslint": "^4.1.1",
"eslint-config-makeomatic": "^1.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-promise": "^3.5.0"
},
"engine": {
"node": ">= 7.6.0"
}
}