-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "use-dictionary",
"version": "0.1.0",
"description": "A React useReducer() hook to use dictionaries (keys and values) 🔑",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf dist",
"compile": "npm run tsc",
"tsc": "tsc",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"test:watch": "npm run test:coverage -- --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proyecto26/use-dictionary.git"
},
"keywords": [
"react",
"hook",
"reducer",
"dictionary",
"dictionaries",
"key",
"values",
"key-value",
"types"
],
"author": "Proyecto 26",
"license": "MIT",
"bugs": {
"url": "https://github.com/proyecto26/use-dictionary/issues"
},
"homepage": "https://github.com/proyecto26/use-dictionary#readme",
"devDependencies": {
"@testing-library/react-hooks": "^8.0.0",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"jest": "^26.0.0",
"react": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.0.0"
},
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
}
}