-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "react-use-mutable",
"version": "0.1.1",
"description": "Tiny hook that keeps your react state up-to-date in callbacks.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register \"test/**/*.ts\"",
"lint": "tslint -p tsconfig.json \"{src,test}/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"hook",
"hooks",
"state",
"mutable",
"callback",
"callbacks"
],
"files": [
"package.json",
"dist",
"Unlicense",
"README.md"
],
"author": "Dmytro Maretskyi <[email protected]>",
"license": "Unlicense",
"homepage": "https://github.com/Marik-D/react-use-mutable",
"bugs": "https://github.com/Marik-D/react-use-mutable/issues",
"repository": {
"type": "git",
"url": "https://github.com/Marik-D/react-use-mutable.git"
},
"dependencies": {
"@types/react": "^16.8.23"
},
"devDependencies": {
"@testing-library/react-hooks": "^1.1.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"react": "^16.8.6",
"react-test-renderer": "^16.8.6",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}