UNPKG

2.04 kBJSONView Raw
1{
2 "name": "subrequests",
3 "version": "2.9.1",
4 "description": "Make many requests in one go.",
5 "main": "lib/index.js",
6 "directories": {
7 "test": "test"
8 },
9 "scripts": {
10 "coverage": "istanbul check-coverage --statements 100 --lines 100 --branches 100 --functions 100 **/coverage.json",
11 "test": "npm run build && istanbul cover --print both nodeunit ./test",
12 "commitmsg": "validate-commit-msg",
13 "precommit": "npm run flow && npm run lint",
14 "prepush": "npm test && npm run coverage",
15 "semantic-release": "semantic-release",
16 "postinstall": "npm run build",
17 "flow": "flow",
18 "build": "flow-remove-types src/ --out-dir lib/ && flow-copy-source src lib",
19 "lint": "eslint src",
20 "start": "node ./exampleServer.js",
21 "snyk-protect": "snyk protect",
22 "prepublish": "npm run snyk-protect"
23 },
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/e0ipso/subrequests.git"
27 },
28 "keywords": [
29 "http",
30 "api",
31 "performance"
32 ],
33 "author": "Mateu Aguiló Bosch",
34 "license": "GPL-2.0",
35 "bugs": {
36 "url": "https://github.com/e0ipso/subrequests/issues"
37 },
38 "homepage": "https://github.com/e0ipso/subrequests#readme",
39 "dependencies": {
40 "ajv": "^6.0.0",
41 "content-type": "^1.0.2",
42 "flow-copy-source": "^1.2.0",
43 "flow-remove-types": "^1.2.1",
44 "jsonpath": "^1.0.0",
45 "lodash": "^4.17.4",
46 "md5": "^2.2.1",
47 "request": "^2.81.0",
48 "snyk": "^1.69.7",
49 "uuid": "^3.1.0"
50 },
51 "devDependencies": {
52 "babel-eslint": "^8.0.0",
53 "eslint": "^4.4.1",
54 "eslint-config-airbnb-base": "^12.0.0",
55 "eslint-plugin-flowtype": "^2.34.1",
56 "eslint-plugin-import": "^2.6.1",
57 "flow-bin": "^0.65.0",
58 "husky": "^0.14.2",
59 "istanbul": "^0.4.5",
60 "nodeunit": "^0.11.1",
61 "semantic-release": "^15.0.0",
62 "semantic-release-conventional-commits": "^2.0.0",
63 "sinon": "^5.0.0",
64 "validate-commit-msg": "^2.12.2"
65 },
66 "release": {
67 "analyzeCommits": "semantic-release-conventional-commits"
68 },
69 "snyk": true
70}