-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "pure-store",
"version": "1.2.0",
"description": "A tiny immutable store with type safety.",
"main": "dist/index.js",
"module": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"repository": "https://github.com/gunn/pure-store",
"author": "Arthur Gunn",
"license": "MIT",
"scripts": {
"build": "tsc --outDir dist && yarn build-esm",
"build-esm": "tsc -m es2015 --outDir .",
"test": "jest",
"prepublish": "yarn test && yarn build",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "((\\.|/)test)\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"files": [
"src",
"dist",
"index.js",
"index.d.ts",
"react.js",
"react.d.ts"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"coveralls": "^3.0.13",
"jest": "^25.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"immer": "1.8.0 - 7"
}
}