-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "redux-act",
"version": "1.8.0",
"license": "Apache-2.0",
"description": "An opinionated lib to create actions and reducers for Redux",
"keywords": [
"redux",
"flux",
"action",
"reducer",
"batch"
],
"main": "lib/index.js",
"module": "esm/index.js",
"types": "./types.d.ts",
"typings": "./types.d.ts",
"homepage": "https://github.com/pauldijou/redux-act",
"author": {
"name": "Paul Dijou",
"url": "http://pauldijou.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/pauldijou/redux-act"
},
"bugs": {
"url": "https://github.com/pauldijou/redux-act/issues"
},
"scripts": {
"clean": "rm -rf lib",
"build:commonjs": "MODULE_TARGET=commonjs babel src --out-dir lib",
"build:esm": "MODULE_TARGET=esm babel src --out-dir esm",
"build": "yarn build:commonjs && yarn build:esm",
"browserify": "mkdir -p dist && browserify -s ReduxAct lib/index.js > dist/redux-act.js",
"minify": "terser dist/redux-act.js -o dist/redux-act.min.js",
"prepublish": "yarn clean && yarn build && yarn browserify && yarn minify",
"test": "NODE_ENV=test mocha --recursive --require @babel/register --reporter mocha-better-spec-reporter",
"coverage": "nyc --require @babel/register ./node_modules/.bin/_mocha -- --recursive --reporter mocha-better-spec-reporter"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/node": "7.8.7",
"@babel/plugin-proposal-object-rest-spread": "7.9.0",
"@babel/plugin-transform-object-assign": "7.8.3",
"@babel/preset-env": "7.9.0",
"@babel/register": "7.9.0",
"browserify": "16.5.0",
"chai": "4.2.0",
"chai-spies-next": "0.9.3",
"mocha": "7.1.1",
"mocha-better-spec-reporter": "3.1.0",
"nyc": "15.0.0",
"redux": "4.0.1",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"terser": "4.6.7",
"typescript": "3.8.3",
"typescript-definition-tester": "0.0.6"
}
}