-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "dora-plugin-example",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-example"
},
"homepage": "https://github.com/dora-js/dora-plugin-example",
"author": "chencheng <sorrycc@gmail.com>",
"license": "MIT",
"main": "./lib",
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha --no-timeouts",
"debug": "./node_modules/.bin/mocha --require babel-core/register --no-timeouts",
"lint": "eslint --ext .js src",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"dependencies": {
},
"devDependencies": {
"babel-cli": "6.4.x",
"babel-core": "6.4.x",
"babel-istanbul": "0.6.x",
"babel-plugin-add-module-exports": "0.1.x",
"babel-preset-es2015": "6.3.x",
"babel-preset-stage-0": "6.3.x",
"dora": "0.x",
"eslint": "1.x",
"eslint-config-airbnb": "3.x",
"expect": "1.13.x",
"mocha": "2.3.x",
"pre-commit": "1.x",
"request": "2.x"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib"
]
}