-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "babel-plugin-mickey-model-loader",
"version": "0.3.9",
"description": "Inject a model loader function into mickey with hmr support.",
"main": "./lib/index.js",
"keywords": [
"mickey",
"babel",
"babel-plugin",
"hmr"
],
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/babel-plugin-mickey-model-loader.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/babel-plugin-mickey-model-loader/issues"
},
"homepage": "https://github.com/mickeyjsx/babel-plugin-mickey-model-loader#readme",
"peerDependencies": {
"redbox-react": "^1.5.0"
},
"dependencies": {
"@babel/generator": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"chalk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"eslint": "^4.5.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"
},
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"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"
}
}