-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@waltz-controls/XXX",
"version": "1.0.0",
"description": "XXX",
"main": "dist/module/index.js",
"module": "dist/module/index.js",
"directories": {
"doc": "docs",
"test": "src/test/js"
},
"scripts": {
"clean": "rm -rf dist",
"test": "mocha-webpack --require test/setup.js --webpack-config webpack.test.config.js \"test/**/*.test.js\"",
"lint": "eslint ./",
"build": "webpack --env.production true",
"module": "webpack --env.module true",
"standalone": "webpack --env.production true --env.module true --env.standalone true",
"start": "webpack-dev-server --env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waltz-controls/XXX.git"
},
"keywords": [
"waltz",
"waltz-controls",
"tango-controls",
"tango-rest",
"module",
"waltz-plugin"
],
"author": "Ingvord",
"license": "MIT",
"bugs": {
"url": "https://github.com/waltz-controls/XXX/issues"
},
"homepage": "https://github.com/waltz-controls/XXX",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"archiver": "^3.1.1",
"atob": "^2.1.2",
"babel-loader": "^8.1.0",
"btoa": "^1.2.1",
"chai": "^4.1.2",
"css-loader": "^0.28.7",
"eslint": "^4.7.2",
"express": "^4.17.1",
"file-loader": "^0.11.2",
"fs": "0.0.1-security",
"jsdom": "^11.6.2",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.0.3",
"mocha-webpack": "2.0.0-beta.0",
"null-loader": "^0.1.1",
"raw-loader": "^4.0.1",
"script-loader": "^0.7.2",
"style-loader": "^1.2.1",
"url-loader": "^0.5.9",
"webpack": "^4.43.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@waltz-controls/middleware": "^2.0.0",
"@waltz-controls/tango-rest-client": "^1.5.0",
"@waltz-controls/waltz-tango-rest-plugin": "^2.0.2",
"@waltz-controls/waltz-user-actions-plugin": "^2.0.0",
"@waltz-controls/waltz-user-context-plugin": "^2.0.0",
"@waltz-controls/waltz-webix-extensions": "^1.0.10",
"codemirror": "^5.53.2"
},
"runtimeDependencies": [
"@waltz-controls/middleware",
"@waltz-controls/tango-rest-client",
"@waltz-controls/waltz-tango-rest-plugin",
"@waltz-controls/waltz-user-actions-plugin",
"@waltz-controls/waltz-user-context-plugin",
"@waltz-controls/waltz-webix-extensions"
]
}