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
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 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
66
67
{
"name": "netiam-contrib-state",
"description": "REST API library",
"main": "lib/state.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.2.2",
"lodash": "^4.6.1",
"sequelize": "^4.13.17"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-eslint": "^8.0.0",
"babel-preset-es2015-node5": "^1.1.2",
"body-parser": "^1.14.1",
"codeclimate-test-reporter": "0.4.1",
"continuation-local-storage": "^3.1.6",
"eslint": "4.14.0",
"express": "^4.13.4",
"istanbul": "0.4.5",
"mocha": "^4.0.0",
"semantic-release": "11.0.2",
"should": "^13.1.0",
"sqlite3": "^3.1.1",
"supertest": "2.0.1",
"uuid": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/netiam/contrib-state.git"
},
"keywords": [
"REST",
"RESTful",
"Microservice",
"Webservice",
"API",
"OData",
"Library"
],
"author": "Hannes Moser <hannes@impossiblearts.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/netiam/contrib-state/issues"
},
"homepage": "https://github.com/netiam/contrib-state",
"engines": {
"node": ">=5",
"npm": ">=3"
},
"publishConfig": {
"tag": "next"
}
}