-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
58 lines (58 loc) · 1.76 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
{
"name": "redux-bundler",
"description": "Compose a Redux store out of smaller bundles of functionality.",
"version": "28.1.0",
"author": "Henrik Joreteg <[email protected]> (joreteg.com)",
"bugs": {
"url": "https://github.com/HenrikJoreteg/redux-bundler/issues"
},
"devDependencies": {
"create-selector": "5.0.0",
"eslint": "7.0.0",
"feather-route-matcher": "4.0.0",
"fixpack": "4.0.0",
"microbundle": "0.11.0",
"module-alias": "2.2.2",
"prettier": "2.3.2",
"querystringify": "2.1.1",
"redux": "4.0.5",
"tap-spec": "5.0.0",
"tape": "5.0.0",
"whatwg-url": "8.1.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/HenrikJoreteg/redux-bundler",
"keywords": [
"PWAs",
"bundler",
"redux"
],
"license": "MIT",
"main": "dist/redux-bundler.js",
"module": "dist/redux-bundler.m.js",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "https://github.com/HenrikJoreteg/redux-bundler"
},
"scripts": {
"build": "microbundle --no-compress --no-sourcemap",
"dev": "microbundle watch --no-compress",
"format": "prettier --write .",
"full-test": "npm run static && npm run build",
"lint": "eslint --fix 'src/**/*.js' 'test/**/*.js'",
"postbuild": "microbundle --no-compress -no-sourcemap -i src/extras/create-async-resource-bundle.js -i src/extras/create-geolocation-bundle.js -i src/extras/online-bundle.js --external redux-bundler -o='dist/'",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run full-test",
"static": "fixpack && npm run format && npm run lint && npm test",
"test": "tape test/*.js | tap-spec"
},
"source": "src/index.js"
}