-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 999 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
37
38
39
40
41
42
43
{
"name": "jort",
"version": "1.3.0",
"description": "javascript oversimplified request tester",
"main": "index.js",
"scripts": {
"babel": "babel src/index.es6 -o index.js",
"ci": "npm run babel -- -w",
"pretest": "npm run babel",
"test": "tape ./test/*.js",
"test-pretty": "npm test | faucet",
"cov": "npm run babel && istanbul cover ./test/*.js",
"preversion": "npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zetlen/jort.git"
},
"keywords": [
"jort",
"test",
"tdd",
"mocha"
],
"author": "zetlen",
"license": "ISC",
"bugs": {
"url": "https://github.com/zetlen/jort/issues"
},
"homepage": "https://github.com/zetlen/jort#readme",
"dependencies": {
"connect": "^3.4.0",
"lodash": "^3.10.1",
"portfinder": "^0.4.0"
},
"devDependencies": {
"babel": "^5.8.23",
"faucet": "0.0.1",
"istanbul": "^0.3.21",
"request": "^2.62.0",
"tape": "^4.2.0"
}
}