-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 821 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
{
"name": "jasmine-theories",
"version": "0.1.4",
"description": "Lets you run the same spec with varying input. Like theories in XUnit.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hypesystem/jasmine-theories"
},
"keywords": [
"jasmine",
"test",
"spec",
"theory",
"theories"
],
"author": "Niels Roesen Abildgaard <me@hypesystem>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hypesystem/jasmine-theories/issues"
},
"files": [
"index.js",
"index.d.ts",
"lib/"
],
"homepage": "https://github.com/hypesystem/jasmine-theories",
"devDependencies": {
"jasmine": "^4.1.0",
"lodash": "^4.0.0"
}
}