-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "priem",
"version": "2.0.0-alpha.11",
"description": "React Hook to declaratively subscribe to external data resources.",
"author": "Vlad Zhukov (http://github.com/Vlad-Zhukov)",
"license": "MIT",
"repository": "Vlad-Zhukov/priem",
"bugs": {
"url": "https://github.com/Vlad-Zhukov/priem/issues"
},
"main": "./dist/priem.cjs.js",
"module": "./dist/priem.esm.js",
"types": "./priem.d.ts",
"scripts": {
"build": "node build.js",
"test": "jest",
"lint": "eslint --ignore-path .gitignore \"src/**/*.{ts,tsx,js}\"",
"prettier": "prettier --ignore-path .gitignore \"**/*.{ts,tsx,js,md}\" --write",
"prepublishOnly": "yarn lint && prettier --ignore-path .gitignore \"**/*.{ts,tsx,js,md}\" --check && yarn build && yarn prettier && yarn test"
},
"dependencies": {
"@sindresorhus/is": "^1.2.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.5.4",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.22",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"delay": "^4.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "^1.18.2",
"raf": "^3.4.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"rollup": "^1.26.3",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"keywords": [
"react",
"reactjs",
"priem",
"state",
"state management",
"async state"
],
"files": [
"src",
"dist",
"priem.d.ts",
"server.js",
"server.d.ts"
]
}