-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.41 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.41 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
59
60
61
62
63
64
{
"name": "easy-fetch",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"start": "npm run build",
"lint": "eslint src --ext .ts --color --",
"lint:test": "eslint test --color --",
"build": "tsc -p . && rollup -c",
"jest": "jest",
"test": "npm run lint:test && npm run jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"ignore": [
"dist/**"
],
"linters": {
"*.{js,jsx}": [
"npm run lint --fix",
"git add"
]
}
},
"keywords": [
"fetch",
"api",
"wrapper"
],
"author": "convicted202",
"license": "MIT",
"devDependencies": {
"@eleks/eslint-config-eleks": "^0.2.1",
"@types/jest": "^24.0.13",
"@types/nock": "^10.0.3",
"@types/node-fetch": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"nock": "^10.0.6",
"node-fetch": "^2.6.0",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.12.4",
"rollup-plugin-typescript2": "^0.21.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
}
}