-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "immer-store",
"version": "0.0.37",
"description": "Functional actions",
"author": "Christian Alfoni <[email protected]>",
"license": "MIT",
"repository": "https://github.com/christianalfoni/immer-store",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:lib & npm run build:es",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"clean": "rimraf es lib coverage",
"typecheck": "tsc --noEmit",
"test": "jest --runInBand",
"test:watch": "jest --watch --updateSnapshot --coverage false",
"prebuild": "npm run clean",
"postbuild": "rimraf {lib,es}/**/__tests__",
"posttest": "npm run typecheck",
"prepublish": "npm test && npm run build"
},
"keywords": [
"state",
"sideeffects",
"app",
"framework"
],
"files": [
"lib",
"es",
"react"
],
"dependencies": {
"immer": "^8.0.1",
"reselect": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^10.12.21",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-test-renderer": "^16.9.0",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "^3.6.2"
}
}