-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 KB
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
{
"name": "@mersocarlin/fetch",
"author": "Hemerson Carlin",
"version": "0.0.5",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "rollup --config",
"prets:defs": "rm -rf lib",
"ts:defs": "tsc --declaration --outDir lib --emitDeclarationOnly",
"test": "PORT=3000 jest",
"tslint": "tsc --project tsconfig.json --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "yarn tslint"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.20",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.39.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.1",
"tslib": "^1.11.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@mersocarlin/api-error": "^0.0.1",
"isomorphic-fetch": "^2.2.1"
},
"engines": {
"node": ">=10"
}
}