-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·44 lines (44 loc) · 1.17 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
{
"name": "jasmine-promises",
"version": "0.4.2",
"description": "Return Promises from your asynchronous Jasmine tests",
"keywords": [
"jasmine",
"promise",
"async",
"testing",
"done"
],
"main": "dist/jasmine-promises.js",
"scripts": {
"test": "karma start",
"preversion": "npm test && git rm dist -r && gulp package && git add -A dist",
"test.sauce": "karma start karma-sauce.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewjh/jasmine-promises.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewjh/jasmine-promises/issues"
},
"homepage": "https://github.com/matthewjh/jasmine-promises#readme",
"devDependencies": {
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"es6-promise": "^3.0.2",
"gulp": "^3.9.0",
"gulp-copy": "0.0.2",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"karma": "^0.13.10",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-sauce-launcher": "^1.0.0",
"karma-source-map-support": "^1.2.0",
"vinyl-source-stream": "^1.1.0"
}
}