-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "simple-get-promise",
"description": "Simple modern way to make http requests. Supports HTTPS, ES6, JSON and Promises",
"repository": {
"type": "git",
"url": "[email protected]:piuccio/simple-get-promise.git"
},
"version": "3.0.0",
"license": "Apache-2.0",
"main": "dist/get.cjs.js",
"jsnext:main": "dist/get.es6.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "npx eslint src test",
"build": "rollup -c rollup.config.js",
"pretest": "rollup -c rollup.config.test.js",
"test": "tap tmp/test-bundle.js",
"prepare": "npm test && npm run build",
"watch": "nodemon --watch src --watch test --exec \"npm test\""
},
"devDependencies": {
"rollup": "^2.23.0",
"rollup-plugin-multi-entry": "^2.1.0",
"tap": "^14.10.8"
},
"engines": {
"node": ">= 10"
},
"bugs": {
"url": "https://github.com/piuccio/simple-get-promise/issues"
},
"homepage": "https://github.com/piuccio/simple-get-promise#readme",
"directories": {
"test": "test"
},
"keywords": [
"get",
"http",
"https",
"request"
],
"author": "Fabio Crisci <[email protected]>",
"dependencies": {}
}