-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "pubcore-http",
"version": "1.0.8",
"description": "returns a http request promise for web browser based apps",
"repository": {
"type": "git",
"url": "https://github.com/pubcore/httpRequest"
},
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register src/**/*.spec.js",
"build": "babel src/http.js --out-file index.js",
"prepare": "npm run build",
"watch": "babel --watch src/http.js --out-file index.js"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"fakexmlhttprequest": "0.0.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"keywords": [
"http-client",
"json-only",
"browser",
"lightweight",
"xmlhttprequest"
]
}