-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
52 lines (52 loc) · 1.56 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
{
"name": "a-walk-in-javascript",
"version": "1.3.0",
"description": "A day by day walk through the basics of javascript assisted with notes, exercises and references to the most significant resources online",
"main": "''",
"scripts": {
"test": "jest -c jest.config.json --coverage",
"test:watch": "jest -c jest.config.json --watchAll",
"lint": "eslint src/**/*.js",
"lint-w": "esw -w --color src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaxolotl/a-walk-in-javascript.git"
},
"keywords": [
"javascript",
"JS",
"ES6",
"ECMAScript"
],
"author": "Javier Valderrama",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jaxolotl/a-walk-in-javascript/issues"
},
"homepage": "https://github.com/Jaxolotl/a-walk-in-javascript#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@jaxolotl/eslint-config-wdc-es6": "~1.2.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.7.1",
"jest-cli": "^24.7.1"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"core-js": "^3.0.1"
}
}