-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 960 Bytes
/
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
{
"name": "create-tslibs",
"version": "0.1.18",
"description": "One stop TypeScript libraries and applications boilerplate generator",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/wilsonshakespeare/create-tslibs"
},
"scripts": {
"test": "echo \"Warning: No Test specified, require to run individual boilerplate test later\"",
"create-tslibs": "node index.js --option=tslib --folder=tslib-template",
"create-express": "node index.js --option=express --folder=express-template",
"publish:np": "bash ./publish.sh"
},
"author": "Wilson Lim",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"fs-extra": "^9.1.0",
"shelljs": "^0.8.3",
"utilzed": "^0.2.3",
"valid-filename": "^3.1.0"
},
"keywords": [
"tslib",
"typescript",
"boilerplate"
],
"bin": {
"create-tslibs": "index.js"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}