-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.86 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
{
"name": "@codevor/js-http-status",
"version": "1.1.2",
"description": "🔍 A simple way to catch HTTP statuses with JavaScript.",
"main": "dist/js-http-status.js",
"unpkg": "dist/js-http-status.min.js",
"files": [
"dist"
],
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"dev": "NODE_ENV=dev webpack --progress --colors --watch",
"build:umd": "NODE_ENV=production webpack",
"lint": "eslint src tests",
"test": "jest --coverage --expand",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"generate-docs": "jsdoc --configure .jsdocrc",
"prepublish": "yarn clean && yarn build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codevor/js-http-status.git"
},
"keywords": [
"http-status",
"http",
"statuses",
"js-http-status",
"validate"
],
"author": "Helder Burato Berto <[email protected]> (https://helder.dev/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codevor/js-http-status/issues"
},
"homepage": "https://github.com/codevor/js-http-status#readme",
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"coveralls": "^3.0.7",
"cz-conventional-changelog": "3.0.2",
"docdash": "^1.1.1",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jsdoc": "^3.6.3",
"rimraf": "^3.0.0",
"terser-webpack-plugin": "^2.2.3",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}