forked from Apress/javascript-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
{
"private": true,
"name": "babel-starter-kit",
"version": "0.0.0",
"description": "This repository contains the source code for 'JavaScript Next' by Apress",
"homepage": "https://www.kriasoft.com/babel-starter-kit/",
"repository": "https://gitlab.com/looselytyped/javascript-next-source",
"author": "Raju Gandhi",
"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",
"node-fetch": "^2.3.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",
"xhr-mock": "^2.4.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"
}
}