-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.81 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.81 KB
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
70
{
"name": "react-concise-state",
"version": "1.2.0",
"description": "Yet another react state manager",
"author": "Dmitrijs Minajevs <dmitrijs.minajevs@outlook.com> (http://dexie.me)",
"repository": "https://github.com/minajevs/react-concise-state",
"homepage": "https://github.com/minajevs/react-concise-state",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p .",
"test": "jest --collectCoverage",
"test:watch": "jest --watch",
"coverage": "codecov",
"docs": "typedoc --readme README.md --name react-concise-state --out ./docs/ --tsconfig tsconfig.json --excludePrivate --excludeExternals && echo > ./docs/.nojekyll",
"prepublish": "rimraf docs && rimraf dist && npm run test && npm run build && npm run docs"
},
"keywords": [
"react",
"typescript",
"state",
"context"
],
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": ">=16.3.0"
},
"devDependencies": {
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.8",
"codecov": "^3.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"jest": "^24.5.0",
"raf": "^3.4.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"typedoc": "^0.14.2",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"setupFiles": [
"raf/polyfill"
],
"testRegex": "/tests/.*\\.(ts|tsx|js)$",
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
],
"snapshotSerializers": [
"enzyme-to-json"
]
}
}