-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 986 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
37
38
{
"name": "gotch",
"version": "1.2.3",
"description": "A simple, elegant and lightweight HTTP client for browser",
"main": "dist/gotch.js",
"module": "dist/gotch.esm.js",
"types": "dist/gotch.d.ts",
"scripts": {
"lint": "eslint lib --max-warnings 0",
"build": "rollup -c",
"prepublishOnly": "npm run lint && npm run build"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": "[email protected]:jeremyxgo/gotch.git",
"author": "jeremyxgo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0"
}
}