-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.35 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.35 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
{
"name": "react-truth",
"version": "0.1.37",
"main": "dist/index.js",
"module": "dist/index.es.js",
"description": "A tiny state manager",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"repository": "github:zapaiamarce/react-truth",
"keywords": [
"react",
"state management",
"hooks",
"context",
"redux"
],
"author": "Marcelo Zapaia <zapaiamarce@gmail.com>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "ava",
"test:watch": "ava --watch --verbose",
"new-patch": "npm version patch && git push"
},
"ava": {
"compileEnhancements": false,
"files": [
"src/**/test.tsx"
],
"extensions": [
"tsx"
],
"require": [
"ts-node/register"
]
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"lodash": "^4.17.15",
"store": "^2.0.12"
},
"devDependencies": {
"@testing-library/react-hooks": "^1.0.4",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.3",
"ava": "^2.2.0",
"react": "^16.8.4",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.7.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-typescript2": "^0.20.1",
"ts-node": "^8.0.3",
"typescript": "^3.5.3"
}
}