-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "reducer-handlers",
"version": "0.0.8",
"description": "The package contains a handlers for redux.",
"main": "dist/sulhadin-reducer-handlers.umd.js",
"module": "dist/sulhadin-reducer-handlers.esm.js",
"unpkg": "dist/sulhadin-reducer-handlers.min.js",
"typings": "types/index.d.ts",
"scripts": {
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"test": "jest",
"lint": "eslint src -c .eslintrc.js --ext js --fix",
"lint:fix": "eslint src -c .eslintrc.js --ext js --fix",
"prettier": "prettier --config ./.prettierrc.js --ignore-path ./.prettierignore --write \"./**/*.{js,json}\"",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sulhadin/reducer-handlers.git"
},
"keywords": [
"react",
"redux",
"reducer",
"action",
"action type"
],
"publishConfig": {
"access": "public"
},
"author": "Sulhadin Öney",
"license": "MIT",
"bugs": {
"url": "https://github.com/sulhadin/reducer-handlers/issues"
},
"homepage": "https://github.com/sulhadin/reducer-handlers#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@types/jest": "^25.2.1",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"rollup": "^2.7.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4",
"uglify-es": "^3.3.9"
},
"directories": {
"test": "tests",
"src": "src",
"build": "tests",
"dist": "dist",
"types": "types"
}
}