-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 909 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": "jasmine-def",
"version": "0.1.0",
"description": "Lazy test subjects for Jasmine inspired by RSpec",
"main": "lib/jasmine-def.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/vlazar/jasmine-def.git"
},
"keywords": [
"jasmine",
"def",
"subject",
"let",
"set"
],
"author": "Vladislav Zarakovsky <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vlazar/jasmine-def/issues"
},
"homepage": "https://github.com/vlazar/jasmine-def",
"devDependencies": {
"jasmine-core": "^2.3.4",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6"
},
"dependencies": {
"lade": "^0.1.0"
}
}