-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.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
{
"name": "private-request",
"description": "A fetch wrapper that hampers traffic analysis",
"version": "0.1.5",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=16"
},
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"src/*.d.ts",
"src/*.js",
"src/*.map"
],
"scripts": {
"prepublishOnly": "yarn build:clean",
"build": "tsc --project .",
"build:e2e": "tsc --project tsconfig.browser.json",
"build:clean": "test -f tsconfig.tsbuildinfo && rm tsconfig.tsbuildinfo; tsc --project .",
"build:data": "cd tests/fixtures/ && ./mkdat",
"test": "tsc --project . && tests/unit/runner",
"start:server": "cd tests/ && caddy start",
"stop:server": "cd tests/ && caddy stop",
"curl:headers": "curl --silent --dump-header /dev/fd/1 --output /dev/null"
},
"devDependencies": {
"@types/node": "^16.0.0",
"baretest": "^2.0.0",
"node-fetch": "^2.6.1",
"typescript": "^4.3.5"
}
}