-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "request-promise-lite",
"version": "0.16.0",
"description": "Lightweight, promiseful http/https request client",
"main": "lib/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/laurisvan/request-promise-lite.git"
},
"scripts": {
"build": "babel src -d lib -s",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src",
"test": "mocha"
},
"author": "Lauri Svan <[email protected]> (https://github.com/laurisvan)",
"keywords": [
"request",
"http",
"promise"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-latest-node": "^3.2.1",
"chai": "^4.2.0",
"coveralls": "^3.0.8",
"eslint": "^6.7.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jsonpath": "^1.0.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3"
},
"dependencies": {},
"engines": {
"node": ">=6.0"
},
"babel": {
"comments": false,
"presets": [
[
"babel-preset-latest-node",
{
"target": 6
}
]
],
"plugins": [
"add-module-exports"
]
}
}