forked from contiamo/react-connect-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "react-connect-context",
"version": "1.0.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/*"
],
"license": "MIT",
"author": "Tejas Kumar <[email protected]>",
"repository": {
"url": "[email protected]:Contiamo/react-connect-context.git"
},
"dependencies": {
"react": "^16.4.0-alpha.7926752"
},
"peerDependencies": {
"react": "^16.4.0-alpha.7926752"
},
"scripts": {
"test": "jest",
"build": "rimraf lib && tsc -d",
"ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "jest && npm run build"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"@types/react-test-renderer": "^16.0.1",
"coveralls": "^3.0.0",
"jest": "^22.4.0",
"react-test-renderer": "^16.3.0-alpha.1",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"ts-jest": "^22.4.4",
"typescript": "^2.8.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}