-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 805 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
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
{
"name": "jasmine-fail-fast",
"version": "0.0.0-development",
"description": "Allow Jasmine tests to \"fail-fast\", exiting on the first failure instead of running all tests no matter what. ",
"repository": {
"type": "git",
"url": "git://github.com/Updater/jasmine-fail-fast.git"
},
"main": "dist/jasmine-fail-fast.js",
"scripts": {
"prepublishOnly": "mkdirp dist && babel -o dist/jasmine-fail-fast.js src/index.js",
"test": "jasmine"
},
"keywords": [
"jasmine",
"fail-fast"
],
"author": "pmowrer@gmail.com",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"babel": "5.6.23",
"jasmine": "^2.3.1",
"mkdirp": "^1.0.3",
"semantic-release": "^17.0.2",
"semantic-release-github-pr": "^6.0.0"
}
}