This repository was archived by the owner on May 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.85 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-searchable",
"version": "0.3.3",
"main": "lib/index.js",
"types": "lib/index.d.js",
"repository": "https://github.com/prograsdk/react-searchable",
"author": "Emil Bækdahl <emilsbaekdahl@gmail.com>",
"license": "MIT",
"description": "Simple collection search for React based on the render prop pattern",
"keywords": [
"react",
"search",
"filter",
"filtering",
"component",
"render",
"prop",
"children",
"render-props",
"searchable"
],
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.14",
"@types/jest": "^24.0.11",
"@types/lodash.debounce": "^4.0.4",
"@types/react": "^16.4.18",
"codecov": "^3.1.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"husky": "^1.1.2",
"jest": "^24.5.0",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"ts-jest": "^24.0.0",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"lint": "./node_modules/tslint/bin/tslint -c ./tslint.json 'src/**/*.{ts,tsx}'",
"test": "./node_modules/jest/bin/jest.js",
"codecov": "./node_modules/codecov/bin/codecov"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/setupTest.js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/index.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}