-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 894 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
{
"name": "request-composer",
"version": "0.0.0",
"description": "A small utility library to create http requests with object and function composition",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"test": "jest",
"prettier": "prettier --write src/**/*.js",
"build": "rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": {
"name": "Graham Losee",
"email": "grahamlosee@gmail.com"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-jest": "^24.9.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.3"
}
}