forked from ahmednuaman/javascript-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 979 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
{
"name": "javascript-tests",
"version": "0.0.1",
"description": "A suite of JavaScript tests (hopefully) useful for interviews",
"main": "index.js",
"scripts": {
"test": "karma start karma.conf.js",
"watch": "karma start karma.conf.js --singleRun=false"
},
"repository": {
"type": "git",
"url": "git://github.com/ahmednuaman/javascript-tests.git"
},
"keywords": [
"karma",
"testing",
"test",
"jasmine",
"interview",
"javascript"
],
"author": "Ahmed Nuaman ([email protected])",
"license": "Apache v2",
"bugs": {
"url": "https://github.com/ahmednuaman/javascript-tests/issues"
},
"homepage": "https://github.com/ahmednuaman/javascript-tests",
"dependencies": {
"jasmine-core": "^3.3.0",
"karma": "^4.0.0",
"karma-jasmine": "^0.3.5",
"karma-phantomjs-launcher": "^1.0.4"
},
"devDependencies": {
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6"
}
}