-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "virtual-dom",
"version": "0.0.1",
"description": "learn about virtual-dom",
"main": "dist/avd.min.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AsherWang/virtual-dom-practice.git"
},
"keywords": [
"virtual",
"dom"
],
"author": "asher",
"license": "MIT",
"bugs": {
"url": "https://github.com/AsherWang/virtual-dom-practice/issues"
},
"homepage": "https://github.com/AsherWang/virtual-dom-practice#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"del": "^4.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^2.4.0",
"readable-stream": "^3.4.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}