This repository was archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "netiam-contrib-jsonapi",
"description": "REST API library",
"main": "lib/jsonapi.js",
"scripts": {
"build": "./bin/build",
"clean": "./bin/clean",
"lint": "./bin/lint",
"start": "npm run watch",
"test": "npm run test:unit",
"test:debug": "DEBUG=netiam:* npm test",
"test:unit": "mocha",
"test:watch": "mocha --watch",
"test:coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
"watch": "./bin/watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"bluebird": "^3.1.1",
"pluralize": "^7.0.0",
"lodash": "^4.14.0",
"sequelize": "^4.13.13"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015-node5": "^1.2.0",
"body-parser": "^1.14.2",
"codeclimate-test-reporter": "0.5.1",
"eslint": "5.0.1",
"express": "^4.14.0",
"istanbul": "0.4.5",
"mocha": "^5.0.0",
"netiam": "^8.0.3",
"netiam-contrib-rest": "^2.0.0",
"should": "^13.1.1",
"semantic-release": "15.13.2",
"sqlite3": "^4.0.0",
"supertest": "3.3.0",
"uuid": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/netiam/contrib-jsonapi.git"
},
"keywords": [
"REST",
"RESTful",
"Microservice",
"Webservice",
"API",
"OData",
"Library"
],
"author": "Hannes Moser <hannes@impossiblearts.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/netiam/contrib-jsonapi/issues"
},
"homepage": "https://github.com/netiam/contrib-jsonapi",
"engines": {
"node": ">=5",
"npm": ">=3"
}
}