-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
88 lines (88 loc) · 2.15 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
79
80
81
82
83
84
85
86
87
88
{
"name": "@beautywe/core",
"version": "1.0.2",
"description": "Write beautiful code for wechat mini app by the beautiful we !",
"main": "dist/index.js",
"scripts": {
"test": "ava",
"test:coverage": "nyc --reporter=html ava",
"commitmsg": "validate-commit-msg",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git cz",
"lint": "git diff --cached --name-only | grep -E '\\.(js|jsx)$' | xargs eslint",
"build:pro": "rm -rf ./dist && babel src -d dist && webpack"
},
"keywords": [
"beautywe"
],
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beautywe/beautywe-core.git"
},
"bugs": {
"url": "https://github.com/beautywe/beautywe-core/issues"
},
"homepage": "https://github.com/beautywe/beautywe-core#readme",
"author": "JerryC8080 (huangjerryc@gmail.com)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.4.0",
"ava": "^1.4.1",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.5",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-istanbul": "^5.1.1",
"commitizen": "^3.0.5",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nyc": "^14.0.0",
"pre-commit": "^1.2.2",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"lodash": "^4.17.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"array-includes",
"@babel/plugin-proposal-class-properties"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}