-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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-new-window",
"version": "4.2.2",
"description": "open a new browser window",
"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 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poooi/plugin-new-window.git"
},
"author": {
"name": "KochiyaOcean",
"link": "https://github.com/kochiyaocean"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poooi/plugin-new-window/issues"
},
"homepage": "https://github.com/poooi/plugin-new-window#readme",
"dependencies": {},
"poiPlugin": {
"title": "Built-in browser",
"description": "Open a new browser window",
"icon": "fa/sitemap",
"priority": 99,
"apiVer": {
"6.99.99": "2.3.3",
"8.99.99": "2.11.0",
"9.0.0-beta.2": "3.0.3",
"9.1.99": "3.1.1"
}
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-poi-plugin": "^2.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"poi-util-transpile": "^8.2.2",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}