-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "refx",
"main": "refx.js",
"version": "3.1.1",
"description": "Redux middleware for triggering side effects",
"repository": {
"type": "git",
"url": "https://github.com/aduth/refx.git"
},
"files": [
"refx.js",
"dist"
],
"scripts": {
"build": "rollup -c",
"postbuild": "npm run minify",
"minify": "terser dist/refx.js -c -m > dist/refx.min.js",
"lint": "eslint src test",
"pretest": "npm run build",
"test": "mocha && npm run lint",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"redux",
"redux-middleware",
"middleware"
],
"author": {
"name": "Andrew Duthie",
"email": "[email protected]",
"url": "http://andrewduthie.com/"
},
"license": "MIT",
"devDependencies": {
"@aduth/eslint-config": "^4.1.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^35.2.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.0",
"prettier": "^2.3.1",
"rollup": "^2.51.2",
"sinon": "^11.1.1",
"terser": "^5.7.0"
}
}