-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "startkit",
"version": "0.0.1",
"main": "./dist/app/index.js",
"types": "./dist/app/index.d.js",
"repository": "",
"author": "",
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist",
"tsc": "tsc",
"test": "mocha -r tsconfig-paths/register -r ts-node/register ./src/**/*.spec.ts",
"lint": "tslint -p ./",
"pack": "npm-run-all clean pack-flow",
"pack:dev": "cross-env NODE_ENV=development npm run pack",
"pack-flow": "webpack-cli --config ./src/webpackConfig/index.ts",
"build": "npm-run-all lint test pack",
"build:dev": "cross-env NODE_ENV=development npm run build",
"release": "semantic-release"
},
"release": {
"verifyConditions": [],
"prepare": [
{
"path": "@semantic-release/exec",
"cmd": "npm run build"
},
{
"path": "@semantic-release/npm",
"npmPublish": false
},
"@semantic-release/changelog",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md",
"dist/**"
]
}
],
"publish": [],
"success": [],
"fail": []
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/exec": "^2.2.4",
"@semantic-release/git": "^5.0.0",
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/read-pkg": "^3.0.0",
"@types/webpack": "^4.4.0",
"@types/webpack-node-externals": "^1.6.3",
"@zerollup/ts-transform-paths": "^1.4.5",
"app-root-path": "^2.0.1",
"awesome-typescript-loader": "^5.0.0",
"camelcase": "^5.0.0",
"chai": "^4.1.2",
"circular-dependency-plugin": "^5.0.2",
"cross-env": "^5.1.6",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"read-pkg": "^3.0.0",
"semantic-release": "^15.5.0",
"ts-node": "^6.0.5",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"ttypescript": "^1.4.6",
"typescript": "2.9.2",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4",
"webpack-node-externals": "^1.7.2"
}
}