forked from bpmn-io/dmn-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
60
61
62
{
"name": "dmn-js-build",
"version": "1.1.0",
"scripts": {
"all": "run-s lint build test",
"build-distro": "lerna run prepublishOnly --sort",
"clean": "del-cli node_modules \"packages/*/node_modules\"",
"distro": "run-s clean reinstall build-distro",
"dev": "run-s build \"lerna-dev -- {1}\" -- ",
"lerna-dev": "lerna run dev --stream --scope",
"build": "lerna run build --parallel --stream",
"lerna-publish": "lerna publish -m \"chore(project): publish %s\"",
"lint": "eslint packages",
"postinstall": "lerna bootstrap --hoist",
"reinstall": "npm ci",
"release": "run-s distro test lerna-publish",
"test": "lerna run test",
"travis": "run-s all build-distro"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/dmn-js"
},
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-inferno": "~5.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"del-cli": "^1.1.0",
"eslint": "^5.7.0",
"eslint-plugin-bpmn-io": "^0.6.0",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^1.3.3",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^3.0.0",
"lerna": "^2.8.0",
"mocha": "^5.2.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.3",
"puppeteer": "^1.1.0",
"raw-loader": "^0.5.1",
"sinon": "^7.1.0",
"sinon-chai": "^2.14.0",
"webpack": "^4.12.1"
}
}