-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "dora-plugin-milk",
"version": "0.0.3",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-milk"
},
"homepage": "https://github.com/dora-js/dora-plugin-milk",
"author": "Yuhang Ge <[email protected]>",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib --ignore __tests__",
"prepublish": "npm run build",
"lint": "eslint --ext .js src"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-register": "^6.3.13",
"babel-polyfill": "^6.3.14"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "~6.3.17",
"babel-plugin-add-module-exports": "~0.1.1",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"eslint": "~1.9.0",
"eslint-config-airbnb": "~1.0.0",
"pre-commit": "~1.1.2"
},
"peerDependencies": {
"atool-build": "^0.4.2",
"dora": "^0.1.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}