-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 829 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 829 Bytes
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
{
"name": "babel-plugin-debug",
"version": "1.0.0",
"description": "Babel plugin that replaces the \"debug\" keyword with an condition for dev- and debug-specific code.",
"main": "src/index.js",
"scripts": {
"example": "example/index.js && DEBUG=scope example/index.js && DEBUG=true example/index.js",
"testonly": "mocha",
"test": "istanbul cover _mocha --report lcovonly -- -R spec",
"posttest": "codeclimate-test-reporter < ./coverage/lcov.info && rm -rf ./coverage"
},
"keywords": [
"babel-plugin",
"dev",
"debug"
],
"author": "Philipp Paul<philipp.paul@deliveryhero.at>",
"devDependencies": {
"babel-core": "^6.17.0",
"babel-register": "^6.16.3",
"codeclimate-test-reporter": "^0.4.0",
"eslint": "^3.8.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2"
}
}