-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
55 lines (55 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
{
"name": "create-typescript-library",
"version": "1.0.3",
"description": "nodejs executable for creating typescript library",
"main": "./dist/main.min.js",
"types": "./dist/main.d.ts",
"bin": {
"create-typescript-library": "./bin/create-typescript-library"
},
"scripts": {
"dev": "npm run tslint && webpack --mode development",
"dev:watch": "nodemon --exec 'npm run dev || exit 1'",
"tslint": "tslint --project .",
"build": "npm run tslint && webpack --mode production",
"test": "npm run clean && jest && npm run clean",
"test:coverage": "npm run clean && jest --coverage && npm run clean",
"demo:test": "npm run build && cd demo && npm install && npm run add-self && npm test",
"clean": "rm -rf dist test-temp",
"version:commit": "git add . && VERSION=`node -p \"require('./package.json').version\"` && git commit -m \"bump version to $VERSION\"",
"version:patch": "npm version --no-git-tag-version patch && npm run version:commit",
"version:minor": "npm version --no-git-tag-version minor && npm run version:commit",
"version:major": "npm version --no-git-tag-version major && npm run version:commit"
},
"files": [
"bin",
"dist",
"templates",
"LICENSE",
"README.md"
],
"repository": "https://github.com/ryancat/create-typescript-library.git",
"author": "Ryan Chen <xryanchen@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.7",
"@types/node": "^10.12.18",
"@types/source-map": "0.5.2",
"@types/webpack": "^4.4.21",
"jest": "^23.6.0",
"nodemon": "^1.17.5",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"@types/inquirer": "^0.0.43",
"@types/shelljs": "^0.8.1",
"inquirer": "^6.2.1",
"shelljs": "^0.8.3"
}
}