-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "low_level_design",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-vm": "mocha test/state_design/vending_machine/test.ts",
"test-sk": "mocha test/statergy/shopping_kart/test.ts",
"test-np": "mocha test/observer/news_paper/test.ts",
"test-car": "mocha test/decorator/car/test.ts",
"test-logistic": "mocha test/factory_method/logistic_app/test.ts",
"test-abs-logistic": "mocha test/abstract_factory/logistic_abs_factory_app/test.ts",
"test-logs": "mocha test/singleton/logger/test.ts",
"test-remote": "mocha test/command/remote_control/test.ts",
"test-socket": "mocha test/adapter/socket/test.ts",
"test-tourism": "mocha test/facade/tourism/test.ts",
"test-null": "mocha test/null_object/ticket/test.ts",
"test-cache": "mocha test/proxy/caching/test.ts",
"test-data-miner": "mocha test/template/data_miner/test.ts"
},
"mocha": {
"require": [
"ts-node/register"
],
"recursive": true,
"extension": [
"ts"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
}
}