-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.85 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
{
"name": "react-tunnel",
"version": "0.1.0",
"description": "React component and decorator for prop providing and prop injection",
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-tunnel.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-tunnel.min.js --config webpack.config.production.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel/register --recursive",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/gnoff/react-tunnel.git"
},
"keywords": [
"react",
"tunnel",
"context",
"provide",
"provider",
"inject",
"injection"
],
"author": "Josh Story <[email protected]> (http://github.com/gnoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnoff/react-tunnel/issues"
},
"homepage": "https://github.com/gnoff/react-tunnel",
"devDependencies": {
"babel": "5.x.x",
"babel-core": "5.x.x",
"babel-eslint": "4.x.x",
"babel-loader": "5.x.x",
"eslint": "1.x.x",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "3.x.x",
"expect": "1.x.x",
"exenv": "1.x.x",
"isparta": "3.x.x",
"istanbul": "0.3.x",
"jsdom": "6.x.x",
"mocha": "2.x.x",
"mocha-jsdom": "1.x.x",
"react": "0.14.x",
"rimraf": "2.x.x",
"webpack": "1.x.x",
"webpack-dev-server": "1.x.x"
},
"dependencies": {
"invariant": "2.x.x",
"prop-types": "^15.5.10"
}
}