-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "babel-plugin-mickey-model-validator",
"version": "1.1.2",
"description": "Validate models shipped by mickey to avoid certain syntax pitfalls.",
"main": "./lib/index.js",
"keywords": [
"mickey",
"model",
"validator",
"redux",
"saga",
"react",
"frontend",
"framework"
],
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/mickeyjsx/babel-plugin-mickey-model-validator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mickeyjsx/babel-plugin-mickey-model-validator.git"
},
"bugs": {
"url": "https://github.com/mickeyjsx/babel-plugin-mickey-model-validator/issues"
},
"dependencies": {
"@babel/code-frame": "^7.0.0-beta.46",
"chalk": "^2.1.0",
"lodash.flatten": "^4.4.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": {
"lint": "eslint --ext .js,.jsx src",
"build": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run build",
"precommit": "npm run lint"
}
}