-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "p2",
"version": "1.0.0",
"description": "",
"main": "./src/planningScheduler/main.ts",
"directories": {
"doc": "docs"
},
"dependencies": {
"@types/chai-as-promised": "^7.1.2",
"@types/mime-types": "^2.1.0",
"chai-as-promised": "^7.1.1",
"child_process": "^1.0.2",
"mime-types": "^2.1.27",
"net": "^1.0.2",
"nyc": "^15.1.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.11",
"@types/node-fetch": "^2.5.5",
"@types/ws": "^7.2.5",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"node": "^13.14.0",
"node-fetch": "^2.6.0",
"sigma": "^2.0.0-alpha32",
"ts-node": "^8.10.2",
"typedoc": "^0.17.4",
"typescript": "^3.9.5",
"ws": "^7.3.0"
},
"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",
"tests-with-coverage-text": "nyc mocha --require ts-node/register test/planningScheduler/**/*.ts",
"tests-with-coverage-HTML": "nyc --reporter=html --reporter=text-summary mocha --require ts-node/register test/planningScheduler/**/*.ts",
"test-vector": "mocha --require ts-node/register test/shared/utilities.ts/vector2.ts",
"test-data": "mocha --require ts-node/register test/planningScheduler/**/dataContainer.ts",
"test-graph": "mocha --require ts-node/register test/planningScheduler/**/graph.ts",
"test-warehouse": "mocha --require ts-node/register test/planningScheduler/**/warehouse.ts",
"test-order": "mocha --require ts-node/register test/planningScheduler/**/order.ts",
"test-Astar": "mocha --require ts-node/register test/planningScheduler/**/testAstar.ts",
"test-handleLockOrder": "mocha --require ts-node/register test/planningScheduler/**/handleLockOrder.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"
}