-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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
69
70
71
72
73
{
"name": "redux-smart-actions",
"version": "1.0.0",
"description": "The fastest way to write Redux actions",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/redux-smart-actions.min.js",
"repository": "git@github.com:klis87/redux-smart-actions.git",
"author": "Konrad Lisiczynski <klisiczynski@gmail.com>",
"license": "MIT",
"typings": "types/index.d.ts",
"keywords": [
"redux",
"actions",
"thunks",
"redux-actions",
"redux-thunk"
],
"homepage": "https://github.com/klis87/redux-smart-actions",
"bugs": {
"url": "https://github.com/klis87/redux-smart-actions/issues"
},
"scripts": {
"clean": "rimraf es lib dist",
"lint": "eslint 'src/**'",
"test": "jest src",
"test:cover": "jest --coverage src",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test-types": "tsc types/index.d.spec.ts --noEmit --lib es2015",
"build:commonjs": "cross-env BABEL_ENV=test babel src --out-dir lib --ignore 'src/**/*.spec.js'",
"build:es": "cross-env babel src --out-dir es --ignore 'src/**/*.spec.js'",
"build:umd": "webpack --mode development -o dist/redux-smart-actions.js",
"build:umd:min": "webpack --mode production -o dist/redux-smart-actions.min.js",
"build": "npm-run-all clean -p build:commonjs build:es build:umd build:umd:min",
"build:watch": "nodemon --watch src --ignore src/**/*.spec.js --exec 'yarn run build:es'",
"prepublish": "yarn run build",
"bundlesize": "bundlesize"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@types/jest": "25.2.3",
"babel-jest": "25.1.0",
"babel-loader": "8.1.0",
"bundlesize": "0.18.0",
"coveralls": "3.0.9",
"cross-env": "7.0.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.3",
"jest": "25.1.0",
"nodemon": "2.0.2",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"redux": "4.0.5",
"redux-mock-store": "1.5.4",
"redux-thunk": "2.3.0",
"rimraf": "3.0.2",
"typescript": "3.9.5",
"webpack": "4.42.0",
"webpack-cli": "3.3.11"
},
"bundlesize": [
{
"path": "./dist/redux-smart-actions.min.js",
"maxSize": "1 kB"
}
]
}