This repository has been archived by the owner on Mar 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "paranoid-request",
"description": "A paranoid request library",
"version": "1.1.0",
"authors": [
"Jordan Milne <[email protected]>",
"Free Wortley <[email protected]>"
],
"keywords": [
"uber-library",
"babel",
"es6",
"http",
"simple",
"util",
"utility",
"security",
"ssrf"
],
"repository": {
"type": "git",
"url": "https://github.com/uber-common/paranoid-request.git"
},
"engines": {
"node": ">= 0.10.0"
},
"homepage": "https://github.com/uber-common/paranoid-request",
"licenses": ["MIT"],
"main": "dist/index.js",
"dependencies": {
"deasync": "^0.1.4",
"deepcopy": "^0.5.0",
"extend": "^3.0.0",
"ip": "^1.1.0",
"request": "^2.67.0",
"semver": "^5.3.0"
},
"devDependencies": {
"async": "^2.0.0-rc.6",
"babel-cli": "^6.6.5",
"babel-istanbul": "^0.8.0",
"babel-preset-es2015": "^6.3.0",
"babel-preset-stage-2": "^6.3.0",
"build-changelog": "^2.1.2",
"eslint": "^2.0.0",
"opn-cli": "1.x",
"sinon": "^1.17.2",
"tape": "^4.0.0",
"xtend": "^4.0.1"
},
"scripts": {
"build": "rm -rf dist && babel src -d dist --copy-files -s",
"changelog-major": "build-changelog --major",
"changelog-minor": "build-changelog --minor",
"changelog-patch": "build-changelog --patch",
"cover": "babel-istanbul cover dist/test/index.js --report=text --report=cobertura --report=html",
"fast-test": "node dist/test/index.js",
"jenkins-install": "unpm install",
"jenkins-jshint": "npm run lint -- --o=jshint.xml --f=checkstyle",
"jenkins-test": "npm run jenkins-jshint && (mkdir -p test && npm run cover | tee test/test.js.tap)",
"lint": "eslint src",
"precommit": "npm run lint -s",
"prefast-test": "npm run prepublish",
"prepublish": "npm run build",
"test": "npm run lint && npm run fast-test",
"view-cover": "npm run cover -- --report=html && opn ./coverage/index.html"
},
"files": [
"dist/*.js",
"dist/*.map",
"package.json",
"LICENSE"
]
}