-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.38 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@reactway/dropdown",
"version": "5.0.0-beta.3",
"publishConfig": {
"tag": "beta"
},
"description": "A flexible React dropdown component.",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"pretest": "tsc -p . --noEmit && tslint -p .",
"test": "jest",
"docs-gen": "ts-docs-gen --entryFile ./src/index.ts"
},
"keywords": [
"react",
"dropdown",
"flexible",
"component"
],
"author": "ReactWay <[email protected]> (https://github.com/reactway)",
"contributors": [
"Martynas Žilinskas <[email protected]> (https://github.com/MartynasZilinskas)",
"Dovydas Navickas <[email protected]> (https://github.com/DovydasNavickas)",
"Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)"
],
"bugs": "https://github.com/ReactWay/dropdown/issues",
"repository": "reactway/dropdown",
"homepage": "https://github.com/ReactWay/dropdown",
"license": "MIT",
"files": [
"dist",
"**/*.md"
],
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"istanbul-azure-reporter": "0.1.4",
"jest": "^24.1.0",
"jest-dom": "^3.1.2",
"jest-junit": "^6.3.0",
"react-dom": "^16.8.3",
"react-testing-library": "^5.9.0",
"simplr-tslint": "^1.0.0-alpha.14",
"ts-docs-gen": "^0.2.0",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"@types/react": "^16.8.4"
},
"dependencies": {
"@types/classnames": "^2.2.7",
"classnames": "^2.2.6",
"react": "^16.8.3",
"tslib": "^1.9.3"
},
"jest": {
"verbose": true,
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"testRegex": "/__tests__/.*\\.(test|spec).(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/index.ts"
],
"coverageReporters": [
"cobertura",
"istanbul-azure-reporter"
]
}
}