forked from skozin/nyc-babel-issue-repro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "nyc-babel-issue-repro",
"version": "0.0.1",
"description": "Repro case for an issue with nyc and babel",
"author": "Sam Kozin <[email protected]>",
"scripts": {
"test": "ava -v",
"watch": "ava -v --watch",
"cov": "npm run cov:clean && npm run cov:run && npm run cov:report-html",
"cov:run": "nyc ava",
"cov:report-html": "nyc report --reporter=html",
"cov:report-lcov": "nyc report --reporter=text-lcov",
"cov:clean": "rm -rf .nyc_output coverage"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": "inline"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "https://github.com/skozin/nyc-babel-issue-repro.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/skozin/nyc-babel-issue-repro/issues"
},
"homepage": "https://github.com/skozin/nyc-babel-issue-repro",
"dependencies": {},
"devDependencies": {
"ava": "sindresorhus/ava",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"nyc": "^6.1.1"
},
"files": [
"index.js"
],
"main": "index.js"
}