-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "react-ledom",
"version": "1.1.0",
"description": "The State management library for React",
"main": "lib/index.js",
"module": "es/index.js",
"types": "src/index.d.ts",
"files": [
"css",
"es",
"lib",
"umd",
"src"
],
"scripts": {
"build": "npm run build:ts && npm run build:nwb",
"build:nwb": "nwb build-react-component",
"build:ts": "tsc",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"nwb": "^0.24.3",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"author": "Zetsin <zetsin@gmail.com>",
"homepage": "https://github.com/zetsin/react-ledom",
"license": "MIT",
"repository": "",
"keywords": [
"react",
"model",
"state-management",
"react-hooks"
]
}