-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.03 KB
/
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
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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "reqque",
"version": "2.0.3",
"main": "dist/reqque.js",
"module": "dist/reqque.esm.js",
"browser": "dist/reqque.umd.js",
"license": "MIT",
"description": "Promise based JavaScript library that enables you to make numerous HTTP requests without bumping into the rate limits",
"repository": {
"type": "git",
"url": "https://github.com/furkankose/reqque.git"
},
"scripts": {
"start:basic": "node -r esm ./examples/basic",
"start:advanced": "node -r esm ./examples/advanced",
"format": "prettier --write",
"lint": "eslint ./",
"lint:fix": "eslint --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"build": "rollup -c",
"release": "yarn build && semantic-release"
},
"dependencies": {
"ajv": "^6.12.2"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"axios": "^0.21.2",
"babel-jest": "^26.3.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-terser": "^7.0.0",
"semantic-release": "^17.1.1",
"user-agents": "^1.0.559"
},
"jest": {
"collectCoverageFrom": [
"**/src/**/*.js"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"cobertura"
],
"testEnvironment": "node"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}