-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "webpack-dev-server --config build/webpack.dev.conf.js",
"build": "webpack --config build/webpack.pro.conf.js"
},
"dependencies": {
"lodash": "^4.17.11",
"pdf-image": "^2.0.0",
"request": "^2.88.2",
"requirejs": "^2.3.6"
},
"devDependencies": {
"clean-webpack-plugin": "^2.0.1",
"cz-conventional-changelog": "^2.1.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.3.0",
"terser-webpack-plugin": "^1.2.3",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"name": "es6",
"description": "本项目作为本人对于ES6/JavaScript学习的记录。\r =\r 主要编写的内容在于 js/index.js 文件中,作为平时编写代码的记录,\r 平时对ES6部分语法不熟悉也是会经常到这里回顾。",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/crossskyLi/es6.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/crossskyLi/es6/issues"
},
"homepage": "https://github.com/crossskyLi/es6#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg"
}
}
}