-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "dora-plugin-debug-corner",
"version": "0.2.1",
"repository": {
"type": "git",
"url": "https://github.com/dora-js/dora-plugin-debug-corner"
},
"homepage": "https://github.com/dora-js/dora-plugin-debug-corner",
"author": "pigcan <[email protected]>",
"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",
"lint": "eslint --ext .js src",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"babel-cli": "~6.2.0",
"babel-core": "~6.1.21",
"babel-istanbul": "^0.5.9",
"babel-plugin-add-module-exports": "~0.1.1",
"babel-preset-es2015": "~6.1.18",
"babel-preset-stage-0": "~6.1.18",
"coveralls": "^2.11.6",
"dora": "0.3.x",
"eslint": "~1.9.0",
"eslint-config-airbnb": "~1.0.0",
"mocha": "~2.3.4",
"pre-commit": "~1.1.2",
"supertest": "^1.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"files": [
"lib",
"package.json",
"README.md"
]
}