-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "umi-plugin-mickey",
"version": "2.0.2",
"description": "Bundle mickey based app with umi",
"main": "lib/index.js",
"keywords": [
"mickey",
"umi",
"plugin"
],
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/umi-plugin-mickey.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/umi-plugin-mickey/issues"
},
"homepage": "https://github.com/mickeyjsx/umi-plugin-mickey#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.47",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"rimraf": "^2.6.1"
},
"scripts": {
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"prepublish": "npm run build",
"precommit": "npm run lint"
}
}