-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "react-height-reporter",
"version": "1.0.7",
"description": "React component-wrapper detecting height changes of it's children",
"main": "lib/ReactHeightReporter.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server",
"build": "parallelshell -w \"npm run build:lib -s\" \"npm run build:dist -s\" \"npm run build:min -s\"",
"build:lib": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps --ignore example",
"build:dist": "cross-env NODE_ENV=production BUILD=dist webpack",
"build:min": "cross-env NODE_ENV=production BUILD=min webpack"
},
"keywords": [
"component",
"react-component",
"react",
"height",
"height-reporter"
],
"author": "Albert Batrshin <[email protected]> (http://fcode.ninja/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/berrtech/react-height-reporter.git"
},
"bugs": {
"url": "https://github.com/berrtech/react-height-reporter/issues"
},
"homepage": "https://github.com/berrtech/react-height-reporter",
"peerDependencies": {
"react": "^0.14 || ^15",
"react-dom": "^0.14 || ^15"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.8",
"html-webpack-plugin": "^2.19.0",
"parallelshell": "^2.0.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}