-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "js-utils-helper",
"version": "v0.3.0",
"description": "JS Utils build with TS",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack",
"build": "webpack --mode production",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Jesonhu/js-utils-helper.git"
},
"keywords": [
"js-utils-helper",
"fehelper"
],
"author": "Jesonhu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jesonhu/js-utils-helper/issues"
},
"homepage": "https://github.com/Jesonhu/js-utils-helper#readme",
"dependencies": {
"lodash": "^4.17.11",
"moment": "^2.24.0",
"store": "^2.0.12"
},
"devDependencies": {
"@types/node": "^11.13.4",
"clean-webpack-plugin": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"ts-loader": "^5.3.3",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.16.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-command": "^0.4.1",
"webpack-dev-server": "^3.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}