-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "foxstorm-cli",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run-s createTemplateDir && npm run-s copyTemplate",
"createTemplateDir": "mkdir -p dist/bin/commands/foxstorm-cli/new",
"copyTemplate": "cp -r bin/commands/foxstorm-cli/new/templates dist/bin/commands/foxstorm-cli/new",
"lint": "tslint --project ./ --exclude \"node_modules/*/**.ts\"",
"start": "nodemon --exec ts-node src/index.ts",
"startserver": "npm run-s build && node dist/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"foxstorm-cli": "dist/foxstorm-cli.js"
},
"keywords": [
"framework",
"api",
"controller",
"model",
"typescript"
],
"author": "Sebastian - Corneliu Vîrlan",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/yargs": "^12.0.5",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"tslint-config-standard": "^8.0.1",
"tslint-immutable": "^5.0.1"
},
"dependencies": {
"fs-extra": "^7.0.1",
"yargs": "^12.0.5"
}
}