generated from theatrejs-labs/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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": "cli-app-template",
"version": "0.1.0",
"license": "MIT",
"bin": {
"cli-app-template": "./lib/index.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"start": "node ./lib/index.js",
"start:watch": "nodemon ./lib/index.js",
"build": "./node_modules/.bin/tsc -p ./tsconfig.json",
"build:watch": "./node_modules/.bin/tsc -w -p ./tsconfig.json",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.tsx\" \"src/**/*.ts\" \"src/**/*.js\" \"src/**/*.jsx\"",
"lint": "tslint -p tsconfig.json",
"prepublish": "npm test && npm run lint",
"postversion": "git push && git push --tags",
"v:patch": "npm version patch --force",
"v:minor": "npm version minor --force",
"v:major": "npm version major --force"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@types/jest": "^24.0.15",
"@types/node": "12.0.10",
"chalk": "^2.4.2",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"commander": "^2.20.0",
"inquirer": "^6.5.0"
}
}