-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
39 lines (39 loc) · 975 Bytes
/
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
{
"name": "js-basics",
"version": "0.0.2",
"description": "an exercise focused on some basics of javascript",
"main": "basics.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "karma start --single-run --no-auto-watch --browsers PhantomJS",
"start": "live-server"
},
"repository": {
"type": "git",
"url": "https://github.com/devleague/js-basics"
},
"author": "Dev League LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/devleague/js-basics/issues"
},
"homepage": "https://github.com/devleague/js-basics",
"dependencies": {
"chai": "^3.5.0",
"mocha": "^2.2.4",
"sinon": "^1.14.1"
},
"devDependencies": {
"karma": "^0.13.14",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^1.1.0",
"live-server": "^1.1.0",
"phantomjs": "^1.9.18",
"sinon-chai": "^2.8.0"
}
}