-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.93 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
{
"name": "@beautywe/plugin-status",
"version": "1.0.0",
"description": "Status plugin for beautywe",
"main": "dist/status.plugin.js",
"scripts": {
"test": "nyc ava test/**/*.test.js",
"test:report": "nyc report --reporter=html",
"test:coverage": "nyc --reporter=html ava",
"build:pro": "rm -rf ./dist && node_modules/.bin/babel src -d dist",
"build:watch": "babel src --watch -d dist",
"code-check": "eslint src/**",
"code-fix": "eslint --fix src/**",
"lint": "git diff --cached --name-only | grep -E '\\.(js|jsx)$' | xargs eslint",
"commitmsg": "validate-commit-msg",
"commit": "git cz"
},
"keywords": [
"beautywe",
"beautywe-plugin"
],
"author": "JerryC8080 (huangjerryc@gmail.com)",
"devDependencies": {
"@beautywe/plugin-event": "^1.0.0",
"@babel/register": "^7.4.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"ava": "^1.4.1",
"babel-eslint": "^9.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-istanbul": "^5.1.0",
"commitizen": "^3.0.5",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^5.2.2",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"@beautywe/core": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beautywe/plugin-status.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/beautywe/plugin-status/issues"
},
"homepage": "https://github.com/beautywe/plugin-status#readme"
}