-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "es6.koans",
"version": "1.0.0",
"description": "set of exercises to learn es6 and es7",
"main": "index.js",
"scripts": {
"pretest": "npm install",
"test": "mocha --compilers js:babel-core/register -w",
"build": "webpack -w",
"live": "live-server",
"start": "npm-run-all --parallel build live",
"coverage": "istanbul cover mocha -- --compilers js:babel-core/register --colors --reporter dot",
"docs": "esdoc -c esdoc.json && open ./esdoc/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackages/es6.koans"
},
"keywords": [
"es6",
"javascript",
"es7",
"hackages"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackages/es6.koans/issues"
},
"homepage": "https://github.com/hackages/es6.koans",
"devDependencies": {
"@types/babel-core": "^6.7.14",
"@types/chai": "^3.4.34",
"@types/istanbul": "^0.4.29",
"@types/mocha": "^2.2.32",
"@types/sinon": "^1.16.31",
"@types/webpack": "^1.12.35",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.3.0",
"esdoc": "^0.4.8",
"eslint": "^3.9.1",
"eslint-plugin-import": "^2.0.1",
"imports-loader": "^0.6.5",
"istanbul": "^0.4.5",
"live-server": "^1.1.0",
"mocha": "^2.3.3",
"npm-run-all": "^3.1.1",
"sinon": "^1.17.1",
"wallaby-webpack": "0.0.9",
"webpack": "^1.13.3"
},
"dependencies": {
"@types/lodash": "^4.14.38",
"lodash": "^3.10.1"
}
}