This repository was archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.39 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.39 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
{
"name": "ResourcePlanner",
"version": "1.0.0",
"description": "Render an agenda style calendar widget",
"license": "Apache 2",
"author": "Carter Moorse",
"private": true,
"dependencies": {},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-csslint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-newer": "^1.2.0",
"node-base64-image": "^0.1.2",
"node-mendix-modeler-path": "https://github.com/JelteMX/node-mendix-modeler-path/archive/v1.0.0.tar.gz",
"npm-run-all": "^4.1.5",
"semver": "^5.1.0",
"shelljs": "^0.7.4",
"typescript": "^3.8.3",
"xml2js": "^0.4.17"
},
"engines": {
"node": ">=5"
},
"generatorVersion": "2.2.5",
"paths": {
"testProjectFolder": "./test/",
"testProjectFileName": "Test.mpr"
},
"scripts": {
"buildWidget": "grunt build",
"buildLib": "npm run build --prefix ./../ResourcePlanner",
"copyCSS": "cp ./../ResourcePlanner/dist/css/ResourcePlanner.css ./src/ResourcePlanner/widget/ui/ResourcePlanner.css",
"copyJS": "cp ./../ResourcePlanner/dist/js/Planner.js ./src/ResourcePlanner/lib/Planner.js",
"copyMap": "cp ./../ResourcePlanner/dist/js/Planner.js.map ./src/ResourcePlanner/lib/Planner.js.map",
"build": "run-s buildLib copyCSS copyJS copyMap buildWidget"
}
}