-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.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
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
84
85
{
"name": "react-zap",
"version": "2.1.0",
"description": "Zap props from a component to another, using the new context API!",
"main": "index.js",
"jsnext:main": "index.es.js",
"module": "index.es.js",
"sideEffects": "false",
"typings": "typings/index.d.ts",
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js",
"clog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/troch/react-zap.git"
},
"keywords": [
"react",
"context",
"React new context API",
"props"
],
"author": "Thomas Roch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/troch/react-zap/issues"
},
"homepage": "https://github.com/troch/react-zap#readme",
"devDependencies": {
"@types/enzyme": "~3.1.10",
"@types/jest": "~22.2.3",
"@types/react": "~16.3.14",
"conventional-changelog-cli": "^2.0.1",
"enzyme": "~3.3.0",
"enzyme-adapter-react-16": "~1.1.1",
"husky": "~0.14.3",
"jest": "~23.0.1",
"lint-staged": "~7.1.2",
"prettier": "~1.13.0",
"react": "~16.4.0",
"react-dom": "~16.4.0",
"rollup": "~0.59.4",
"rollup-plugin-typescript2": "~0.14.0",
"ts-jest": "~22.4.6",
"tslint": "~5.10.0",
"tslint-config-prettier": "~1.13.0",
"typescript": "~2.9.1"
},
"peerDependencies": {
"react": ">=16.3.0 <17.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint",
"git add"
],
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "modules/__tests__/.*",
"moduleFileExtensions": [
"tsx",
"ts",
"js"
],
"setupFiles": [
"<rootDir>/test.config.js"
],
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
}
}
}