generated from nikku/node-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
58
59
{
"name": "@bpmn-io/sr",
"description": "A setup and run utility for bpmn.io based projects",
"version": "0.4.3",
"main": "dist/index.js",
"bin": {
"sr": "bin/sr.js"
},
"keywords": [
"bpmn.io",
"setup",
"git"
],
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/sr"
},
"publishConfig": {
"access": "public"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"license": "MIT",
"scripts": {
"all": "run-s lint test",
"bundle": "rollup -c",
"lint": "eslint .",
"pretest": "npm run bundle",
"dev": "npm test -- --watch",
"test": "mocha 'test/*.js'"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"ansi-colors": "^4.1.3",
"chai": "^4.3.7",
"color-support": "^1.1.3",
"eslint": "^8.47.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"execa": "^5.0.0",
"listr": "^0.14.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prexit": "^2.2.0",
"rollup": "^3.28.0",
"tree-kill": "^1.2.2",
"zen-observable": "^0.8.15"
},
"dependencies": {
"mri": "^1.2.0"
},
"files": [
"bin",
"dist"
]
}