-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "noop-service-worker-middleware",
"version": "3.0.0",
"description": "Returns Express middleware that serves a service worker that resets any previously set service worker configuration. Useful for development.",
"keywords": [
"express",
"middleware",
"webpack-dev-server",
"service-worker",
"cache",
"invalidation"
],
"author": "Itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/noop-service-worker-middleware.git"
},
"homepage": "https://github.com/itgalaxy/noop-service-worker-middleware",
"bugs": "https://github.com/itgalaxy/noop-service-worker-middleware/issues",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-plugin-ava": "^5.1.1",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-itgalaxy": "^98.0.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-unicorn": "^7.1.0",
"express": "^4.16.2",
"got": "^8.3.2",
"jest": "^24.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"npm-run-all": "^4.1.5",
"npmpub": "^4.1.0",
"prettier": "^1.16.4",
"remark-cli": "^6.0.1",
"remark-preset-lint-itgalaxy": "^14.0.0"
},
"scripts": {
"lint:prettier": "prettier --list-different '{lib,__tests__}/**/*.{js,mjs,jsx,md}' '*.{js,mjs,jsx,md}'",
"lint:js": "eslint . --cache --report-unused-disable-directives --ignore-path .gitignore --ext 'js,.mjs,.jsx,.md'",
"lint:md": "remark . -i .gitignore -f -q",
"lint": "npm-run-all -l -p lint:**",
"prettify": "npm run lint:prettier -- --write",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix": "npm-run-all -l prettify 'fix:**'",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest **/*.test.js --coverage",
"release": "npmpub"
},
"engines": {
"node": ">= 6.9.0"
}
}