forked from bvaughn/jasmine-es6-promise-matchers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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-es6-promise-matchers",
"version": "2.0.1",
"homepage": "https://github.com/bvaughn/jasmine-es6-promise-matchers",
"description": "Jasmine matchers for testing ES6 Promises",
"authors": [
"Brian Vaughn <[email protected]>"
],
"keywords": [
"Promise",
"ES6Promise",
"Jasmine",
"matchers",
"unit",
"test",
"tests"
],
"license": "Apache License Version 2.0,",
"main": "jasmine-es6-promise-matchers.js",
"directories": {},
"dependencies": {
"es6-promise": "~2.0.1"
},
"devDependencies": {
"es6-promise": "^2.0.1",
"gulp": "~3.8.10",
"jasmine": "2.1.1",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chrome-launcher": "^0.1.8",
"karma-cli": "0.0.4",
"karma-jasmine": "^0.3.5"
},
"scripts": {
"test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bvaughn/jasmine-es6-promise-matchers.git"
},
"bugs": {
"url": "https://github.com/bvaughn/jasmine-es6-promise-matchers/issues"
}
}