-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"name": "redux-batched-actions",
"version": "0.5.0",
"description": "redux higher order reducer + action creator to reduce actions under a single subscriber notification",
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.mjs",
"types": "lib/index.d.ts",
"scripts": {
"test": "export BABEL_ENV=cjs && node_modules/.bin/mocha --require @babel/register",
"clean": "rm -rf lib es dist",
"copy:ts": "cp src/index.d.ts lib/index.d.ts",
"build:js": "babel src",
"build:cjs": "npm run build:js -- --env-name cjs --out-dir lib/",
"build:mjs": "npm run build:js -- --env-name mjs --out-dir es/; j2m es/*",
"build:umd": "npm run build:js -- --env-name dist --out-dir dist/",
"build": "npm run clean; npm run build:umd && npm run build:cjs && npm run build:mjs && npm run copy:ts",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tshelburne/redux-batched-actions"
},
"keywords": [
"redux",
"react",
"reactjs",
"batched",
"action"
],
"author": {
"name": "Tim Shelburne",
"email": "shelburt02@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tshelburne/redux-batched-actions/issues"
},
"homepage": "https://github.com/tshelburne/redux-batched-actions",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"js-to-mjs": "^0.2.0",
"mocha": "^7.1.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0"
},
"peerDependencies": {
"redux": ">=1.0.0"
}
}