This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "es6-module-starter",
"version": "1.4.1",
"description": "Boilerplate starter kit for ES2015+/Babel modules.",
"author": "Daniel Couper <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DanCouper/es6-module-starter"
},
"keywords": [
"es6",
"es2015",
"babel",
"boilerplate",
"starter",
"ava",
"nyc",
"plato"
],
"author": "Daniel Couper <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^7.0.0",
"babel-preset-env": "0.0.8",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"es6-plato": "^1.0.9",
"eslint": "^3.3.1",
"nyc": "^9.0.1"
},
"babel": {
"presets": [
"latest",
"env",
{
"targets": {
"browsers": [
"IE >= 11",
"Last 2 versions"
]
}
}
]
},
"eslintConfig": {
"parser": "babel-eslint",
"rules": {
"eol-last": [
0
],
"no-mixed-requires": [
0
],
"no-underscore-dangle": [
0
],
"quotes": [
2,
"single"
],
"strict": 0
}
},
"main": "src/index.js",
"scripts": {
"ava": "ava",
"clean": "rm -rf coverage && rm -rf dist",
"compile": "babel src -d dist -s",
"coverage": "nyc --reporter=lcov npm run ava && nyc report",
"coveralls": "nyc npm run ava && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/**/*.js",
"plato": "es6-plato -d coverage/plato src/**/*.js",
"test": "npm run coveralls && rm -rf ./coverage"
}
}