-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.8 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
{
"name": "curried-reducer",
"version": "1.0.1",
"description": "Generate type-safe action creators and a reducer from a set of curried functions",
"author": "Robert Rinaldo",
"license": "MIT",
"repository": "github:Rinaldo/curried-reducer",
"bugs": "https://github.com/Rinaldo/curried-reducer/issues",
"keywords": [
"reducer",
"redux",
"useReducer",
"actions",
"fsa",
"fp",
"curried"
],
"browser": "dist/curried-reducer.umd.js",
"main": "dist/curried-reducer.cjs.js",
"module": "dist/curried-reducer.esm.js",
"types": "dist/index.d.ts",
"unpkg": "dist/curried-reducer.umd.min.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf dist",
"lint": "eslint {src,test}/**/*.ts",
"lint-fix": "eslint {src,test}/**/*.ts --fix",
"prettier": "prettier --check {src,test}/**/*.ts",
"prettier-fix": "prettier --write {src,test}/**/*.ts",
"test": "jest",
"test-watch": "jest --watch",
"full-lint": "npm run lint && npm run prettier",
"full-test": "npm run lint && npm run prettier && npm run test",
"coverage": "jest --collectCoverage"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.5.1",
"prettier": "2.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"sideEffects": false
}