-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.57 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
{
"name": "pddl-gantt",
"version": "2.1.1",
"description": "Plan visualization for AI-Planning plans. The package includes HTML components for Gantt, swimlane and line plot visualization of plan originating from AI Planning solvers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -- out/test/*.js",
"pretest": "eslint ./src/*.ts && npm run compile",
"build": "tsc",
"compile": "tsc && npm run copyToDist",
"copyToDist": "copyfiles --error --verbose --up 2 \"./out/src/**/*.*\" ./dist/",
"prepack": "npm run test && npm run copyToDist",
"compileSample": "browserify src/PlanView.ts src/sample.ts -p tsify > out-sample/sample.js",
"watchSample": "watchify src/PlanView.ts src/sample.ts -p tsify -o out-sample/sample.js --verbose",
"watch": "tsc -w"
},
"keywords": [
"gantt",
"chart",
"ai",
"planning"
],
"author": "Jan Dolejsi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jan-dolejsi/pddl-gantt"
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"tsify": "^5.0.4",
"typescript": "^5.2.2",
"watchify": "^4.0.0"
},
"dependencies": {
"pddl-workspace": "^11.3.0",
"vscode-uri": "^3.0.8"
}
}