-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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": "transaction-redux",
"version": "0.0.1",
"main": "lib/index.cjs.js",
"types": "lib/types/index.d.ts",
"module": "lib/index.esm.js",
"author": "Genrikh Fetischev <[email protected]>",
"maintainers": [
"Nick Tsapkin (https://github.com/fobdy)"
],
"license": "MIT",
"sideEffects": false,
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/GenrikhFetischev/transaction-redux"
},
"scripts": {
"prepare:build": "rimraf lib/*",
"build": "rollup -c",
"prepare:publish": "yarn lint && yarn test && yarn build",
"lint": "eslint --ext=ts src/*",
"test": "jest",
"format": "prettier --write '**/*.ts'"
},
"dependencies": {
"deep-diff": "^1.0.2",
"jsonpatcherproxy": "^0.1.0-0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.0",
"@types/deep-diff": "^1.0.0",
"@types/jest": "^24.0.22",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-url": "^3.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}