-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "poi-plugin-exp-calc",
"description": "Calculate experience value.",
"version": "5.0.3",
"main": "index.es",
"dependencies": {
"react-edit-inplace": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-poi-plugin": "^2.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"poi-util-transpile": "^10.3.0",
"prettier": "^1.16.4"
},
"scripts": {
"reset": "git clean -f && git checkout .",
"prepack": "poi-util-transpile --sm --replace",
"postpublish": "npm run reset",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poooi/plugin-exp-calculator.git"
},
"author": {
"name": "Chiba",
"link": "https://github.com/Chibaheit"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poooi/plugin-exp-calculator/issues"
},
"homepage": "https://github.com/poooi/plugin-exp-calculator#readme",
"poiPlugin": {
"title": "Exp calc",
"description": "Exp calculator",
"icon": "fa/calculator",
"priority": 2,
"apiVer": {
"6.99.99": "3.0.0",
"7.8.99": "3.4.1",
"7.99.99": "4.0.3",
"10.2.99": "4.1.1"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}