-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.68 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
{
"name": "loopback-component-bpmn",
"version": "0.2.2",
"description": "Integration of bpmn-engine with loopback",
"main": "index.js",
"scripts": {
"test": "npm run mocha:istanbul",
"test:all": "cross-env mocha --recursive \"./test/*.test.js\" --timeout 60000",
"mocha:istanbul": "nyc --reporter=lcov npm run test:all && nyc report --report=lcov > coverage.lcov",
"posttest2": "npm run lint && nsp check",
"lint": "eslint .",
"try": "DEBUG=loopback-component-bpmn node test/fixtures/loopback-app/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yantrashala/loopback-component-bpmn.git"
},
"keywords": [
"bpmn-engine",
"loopback",
"bpmn"
],
"author": "pbhadauria2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/yantrashala/loopback-component-bpmn/issues"
},
"homepage": "https://github.com/yantrashala/loopback-component-bpmn#readme",
"dependencies": {
"bpmn-engine": "5.0.0-rc2",
"bpmn-engine-extensions": "^1.1.0",
"camunda-bpmn-moddle": "^0.13.0",
"debug": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.3.0",
"supertest": "^3.0.0",
"supertest-session": "^3.1.0",
"compression": "^1.0.3",
"cors": "^2.5.2",
"helmet": "^1.3.0",
"loopback-boot": "^2.6.5",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^2.0.0",
"loopback-component-explorer": "^5.0.0",
"loopback": "^3.0.0",
"eslint": "^3.17.1",
"eslint-config-loopback": "^8.0.0",
"nsp": "^2.1.0",
"json-stringify-safe": "5.0.1"
}
}