-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.15 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
{
"name": "jasmine-precondition",
"version": "0.1.1",
"description": "A Jasmine instruction to ease setting up asynchronous pre-conditions before, during and after tests",
"main": "lib/jasmine-precondition.js",
"scripts": {
"test": "node ./node_modules/jasmine/bin/jasmine.js",
"cover": "node ./node_modules/istanbul/lib/cli.js cover --report html --print detail jasmine",
"view-cover": "node ./node_modules/istanbul/lib/cli.js report html && open ./coverage/index.html",
"travis-test": "node ./node_modules/istanbul/lib/cli.js cover jasmine --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/themindfuldev/jasmine-precondition"
},
"keywords": [
"jasmine",
"precondition"
],
"author": "Tiago Romero Garcia",
"license": "MIT",
"bugs": {
"url": "https://github.com/themindfuldev/jasmine-precondition/issues"
},
"homepage": "https://github.com/themindfuldev/jasmine-precondition",
"devDependencies": {
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jasmine": "^2.1.1"
}
}