-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.2 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
82
83
{
"name": "react-combine-provider",
"version": "0.1.3",
"main": "dist/index.js",
"umd:main": "dist/react-combine-providers.umd.production.js",
"module": "dist/react-combine-providers.es.production.js",
"homepage": "https://github.com/hlhr202/React-Combine-Provider",
"description": "Combine react providers in ease",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hlhr202/React-Combine-Provider"
},
"keywords": [
"react",
"context",
"redux",
"state management",
"constate",
"unstated",
"provider",
"consumer"
],
"typings": "dist/index.d.ts",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom --runInBand --reporters=default --reporters=jest-junit --coverage --coverageReporters=text-lcov | coveralls"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>setupTests.ts"
],
"reporters": [
"default",
"jest-junit"
]
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"constate": "^1.1.1",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"husky": "^2.3.0",
"jest-junit": "^8.0.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tsdx": "^0.9.2",
"tslib": "^1.9.3",
"typescript": "^3.4.5",
"unstated-next": "^1.1.0"
},
"jest-junit": {
"output": "./test-report.xml"
}
}