-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "poi-plugin-lock-reminder",
"version": "1.0.6",
"description": "A poi plugin for reminding to lock new kanmusu.",
"main": "index.es",
"scripts": {
"reset": "git clean -f && git checkout . && git submodule foreach git checkout . && git submodule foreach git clean -f",
"prepack": "poi-util-transpile --sm --replace",
"postpublish": "npm run reset",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint . --ext .es",
"lint:fix": "eslint . --ext .es --fix"
},
"keywords": [
"poi",
"reminder"
],
"author": {
"name": "SoraYama",
"url": "https://sorayama.me"
},
"homepage": "https://github.com/SoraYama/poi-plugin-lock-reminder",
"bugs": {
"url": "https://github.com/SoraYama/poi-plugin-lock-reminder/issues",
"email": "[email protected]"
},
"license": "MIT",
"poiPlugin": {
"title": "Ship Reminder",
"description": "Remind to lock new KanMusu",
"icon": "fa/lock",
"priority": 99
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-poi-plugin": "^2.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"moment": "^2.23.0",
"prettier": "^1.15.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"subtender": "^0.15.0"
}
}