-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "react-context-reverse",
"version": "0.0.3",
"description": "Normal React context flows down. Reverse context flows up, from a descendant to a single ancestor.",
"main": "dist/reverse-context.js",
"files": [
"dist/reverse-context.js"
],
"author": "Tim Kindberg",
"repository": {
"type": "git",
"url": "https://github.com/timkindberg/react-context-reverse.git"
},
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --coverage",
"build": "rm -rf dist && mkdir dist && babel ./src/reverse-context.js --out-file dist/reverse-context.js",
"precommit": "pretty-quick"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"husky": "^0.14.3",
"jest": "^23.6.0",
"prettier": "1.14.2",
"pretty-quick": "^1.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-testing-library": "^5.2.0",
"regenerator-runtime": "^0.11.1"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"publishConfig": { "registry": "https://npmjs.com/" }
}