-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.81 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
{
"name": "p2",
"version": "1.0.0",
"description": "![](model.png)",
"main": "./src/planningScheduler/main.ts",
"directories": {
"doc": "docs"
},
"dependencies": {
"net": "^1.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.5",
"@types/ws": "^7.2.4",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"node": "^13.12.0",
"node-fetch": "^2.6.0",
"sigma": "^2.0.0-alpha32",
"ts-node": "^8.8.2",
"typedoc": "^0.17.4",
"typescript": "^3.8.3",
"ws": "^7.2.3"
},
"scripts": {
"install": "npm i node typescript ts-node mocha chai @types/node @types/chai @types/mocha ws @types/ws --save-dev",
"test": "mocha --require ts-node/register",
"tests": "mocha --require ts-node/register test/planningScheduler/**/*.ts",
"test-vector": "mocha --require ts-node/register test/planningScheduler/**/testVector2.ts",
"test-data": "mocha --require ts-node/register test/planningScheduler/**/testDataContainer.ts",
"test-graph": "mocha --require ts-node/register test/planningScheduler/**/testGraph.ts",
"test-warehouse": "mocha --require ts-node/register test/planningScheduler/**/testWarehouse.ts",
"test-order": "mocha --require ts-node/register test/planningScheduler/**/testOrder.ts",
"test-Astar": "mocha --require ts-node/register test/planningScheduler/**/testAstar.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msan19/P2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/msan19/P2/issues"
},
"homepage": "https://github.com/msan19/P2#readme"
}