-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
95 lines (95 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
{
"name": "react-contextual",
"version": "5.0.2",
"description": "store and hoc patterns for react 16s new context model",
"main": "dist/react-contextual",
"module": "dist/react-contextual.es",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "npm run test && npm run build",
"test": "jest",
"precommit": "lint-staged"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 80
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/drcmda/react-contextual.git"
},
"keywords": [
"react",
"context",
"store",
"hoc",
"redux"
],
"author": "Paul Henschel",
"license": "ISC",
"bugs": {
"url": "https://github.com/drcmda/react-contextual/issues"
},
"homepage": "https://github.com/drcmda/react-contextual#readme",
"devDependencies": {
"@babel/core": "7.0.0-beta.44",
"@babel/plugin-transform-runtime": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-react": "7.0.0-beta.44",
"@babel/preset-stage-2": "7.0.0-beta.44",
"@babel/runtime": "7.0.0-beta.44",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "22.4.3",
"babel-plugin-annotate-pure-calls": "0.3.0-beta.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"color": "3.0.0",
"delay": "2.0.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"husky": "^0.14.3",
"jest": "22.4.3",
"lint-staged": "^7.1.1",
"prettier": "^1.12.1",
"react": "16.3.1",
"react-dom": "16.3.1",
"rimraf": "2.6.2",
"rollup": "0.57.1",
"rollup-plugin-babel": "4.0.0-beta.2"
},
"peerDependencies": {
"prop-types": "15.x.x",
"react": ">= 16.3.1",
"react-dom": ">= 16.3.1"
},
"dependencies": {
"tiny-uuid": "^1.0.0"
},
"jest": {
"setupFiles": [
"./tests/jest.setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"jest"
],
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.jsx?$",
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}