-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "javascript.koans",
"version": "1.0.0",
"description": "In this set of examples and tests we cover advanced JavaScript concepts such as closure, inheritance, variable hoisting, 'this' with context switch...",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"babel-runtime": "^5.8.25",
"chai": "^3.3.0",
"esdoc": "^0.4.3",
"isparta": "^3.1.0",
"istanbul": "^0.3.22",
"live-server": "^0.9.1",
"mocha": "^2.3.3",
"node-inspector": "^0.12.5",
"sinon": "^1.17.2",
"wallaby-webpack": "0.0.9"
},
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel/register -w",
"docs": "esdoc -c esdoc.json && open ./esdoc/index.html",
"start": "live-server",
"debug": "node-debug src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Philos-io/javascript.koans.git"
},
"keywords": [
"javascript",
"testing"
],
"author": "davy@philos.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/Philos-io/javascript.koans/issues"
},
"homepage": "https://github.com/Philos-io/javascript.koans#readme"
}