-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "fetch-results",
"version": "0.2.0",
"description": "Make HTTP requests without catch",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/larohr/fetch-results.git"
},
"scripts": {
"build": "npm run clean && npm run build:ts && npm run build:copy",
"build:ts": "tsc -p tsconfig.json && tsc -p tsconfig.json -m esnext --outDir dist/esm/ -d false -declarationMap false",
"build:copy": "copyfiles README.md LICENSE src/package.json dist --flat",
"clean": "rm -rf dist",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/jest": "^29.1.2",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"jest": "^29.1.2",
"runmd": "^1.3.6",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-results": "^3.3.0",
"typescript": "^4.8.4"
},
"dependencies": {
"tslib": "^2.4.0"
}
}