-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
67 lines (67 loc) · 1.95 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
{
"private": true,
"name": "babel-starter-kit",
"version": "0.0.0",
"description": "A project template for authoring and publishing JavaScript libraries",
"homepage": "https://www.kriasoft.com/babel-starter-kit/",
"repository": "kriasoft/babel-starter-kit",
"author": "Kriasoft <hello@kriasoft.com> (https://www.kriasoft.com)",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me>",
"Vladimir Kutepov <frenzzy.man@gmail.com>"
],
"license": "MIT",
"keywords": [],
"main": "index.js",
"jsnext:main": "index.es.js",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb-base"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"coveralls": "^2.11.14",
"del": "^2.2.2",
"easystatic": "^0.1.12",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"sinon": "^7.1.1"
},
"scripts": {
"lint": "eslint src test tools",
"test": "mocha --require @babel/register",
"test:watch": "mocha --require @babel/register --reporter min --watch",
"test:cover": "nyc npm test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "node tools/build",
"prepublish": "npm run build",
"publish:docs": "easystatic deploy docs --repo kriasoft/babel-starter-kit",
"start": "easystatic start docs"
}
}