This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·90 lines (90 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "overstated",
"description": "React state management library that's delightful to use, without sacrificing performance or scalability.",
"version": "2.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean:dist": "rimraf dist",
"clean:coverage": "rimraf coverage .nyc_output",
"clean": "npm run clean:dist && npm run clean:coverage",
"compile": "tsc --skipLibCheck && tstei",
"compile:watch": "tsc --skipLibCheck --watch",
"test": "ava",
"test:watch": "ava --watch",
"coverage": "nyc --reporter=html ava",
"report": "nyc report",
"report:html": "open coverage/index.html",
"demo:build": "cd demo && webpack",
"demo:build:watch": "cd demo && webpack --watch",
"demo:serve": "cd demo && open index.html",
"prepublishOnly": "npm run clean && npm run compile && npm run coverage"
},
"ava": {
"compileEnhancements": false,
"files": [
"test/modules/*.ts"
],
"babel": {
"extensions": [
"ts",
"tsx"
]
},
"require": [
"ts-node/register/transpile-only",
"jsdom-global/register"
]
},
"bugs": {
"url": "https://github.com/fabiospampinato/overstated/issues"
},
"license": "MIT",
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/overstated.git"
},
"keywords": [
"react",
"state",
"management",
"easy",
"performant",
"scalable",
"typescript"
],
"dependencies": {
"@types/react": "^16.8.12",
"are-shallow-equal": "^1.0.0",
"call-hooks": "^1.0.0",
"deep-object-diff": "^1.1.0",
"react-use-mounted": "^1.0.0",
"react-use-previous": "^1.0.0"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"ava": "^1.4.1",
"ava-spec": "^1.1.1",
"awesome-typescript-loader": "^5.2.1",
"call-spy": "^2.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"nyc": "^13.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.4.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"typescript": "^3.4.1",
"typescript-transform-export-interop": "^1.0.2",
"webpack": "^4.29.6"
}
}