-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 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
{
"name": "design-pattern-learning-ts",
"version": "1.0.0",
"description": "Java like design pattern implements BY TypeScript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/main.js",
"strategy": "tsc strategy/*.ts --lib ES7 --outDir ./build --types node",
"observer": "tsc observer/*.ts --lib ES7 --outDir ./build --types node",
"decorator": "tsc decorator/*.ts --lib ES7 --outDir ./build --types node",
"factory": "tsc factory/*.ts --lib ES7 --outDir ./build --types node",
"singleton": "tsc singleton/*.ts --lib ES7 --outDir ./build --types node",
"command": "tsc command/*.ts --lib ES7 --outDir ./build --types node",
"adapter": "tsc adapter/*.ts --lib ES7 --outDir ./build --types node",
"facade": "tsc facade/*.ts --lib ES7 --outDir ./build --types node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiahaol68/design-pattern-learning-ts.git"
},
"keywords": [
"design"
],
"author": "Tecker.Yu <[email protected]> (https://github.com/yujiahaol68)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yujiahaol68/design-pattern-learning-ts/issues"
},
"homepage": "https://github.com/yujiahaol68/design-pattern-learning-ts#readme",
"dependencies": {
"@types/node": "8.0.31",
"typescript": "2.5.3"
}
}