-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.72 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
{
"name": "TLS_CONFIG_NAME",
"description": "TLS_CONFIG_DESCRIPTION",
"version": "1.0.0",
"author": "TLS_CONFIG_AUTHOR",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "webpack-dev-server --progress --config webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 0",
"build:example": "webpack --config webpack.dev.js",
"build:dist": "webpack --config webpack.prod.js",
"build": "npm run build:dist && npm run build:example",
"commitmsg": "commitlint -e $GIT_PARAMS",
"commit": "cz",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/TLS_CONFIG_USERNAME/TLS_CONFIG_REPO.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/github": "^7.1.0",
"@semantic-release/npm": "^7.0.6",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.1",
"copy-webpack-plugin": "^6.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.3.0",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"license": "MIT"
}