forked from nkbt/react-height
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.95 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
{
"name": "react-height",
"version": "2.1.1",
"description": "Component-wrapper to determine and report children elements height",
"main": "lib/index.js",
"scripts": {
"pregh-pages": "git fetch origin",
"gh-pages": "git checkout gh-pages && git rebase origin/master --force-rebase && npm run build && git add . && git commit --amend --no-edit && git push --force && git checkout master",
"build": "parallelshell -w \"npm run build:lib -s\" \"npm run build:ghPages -s\" \"npm run build:dist -s\" \"npm run build:min -s\"",
"prebuild": "rimraf lib example build",
"build:lib": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps --ignore src/example",
"build:ghPages": "cross-env NODE_ENV=production BUILD=ghPages webpack",
"build:dist": "cross-env NODE_ENV=production BUILD=dist webpack",
"build:min": "cross-env NODE_ENV=production BUILD=min webpack",
"prepublish": "parallelshell -w \"npm run build:lib -s\" \"npm run build:dist -s\" \"npm run build:min -s\"",
"start": "cross-env NODE_ENV=development webpack-dev-server",
"test": "cross-env NODE_ENV=test babel-node test",
"test:dev": "cross-env NODE_ENV=test babel-node test | tap-nyan",
"test:cov": "cross-env NODE_ENV=test babel-node node_modules/isparta/bin/isparta cover --report text --report html --report lcov --dir reports/coverage test",
"test:e2e": "cross-env NODE_ENV=development nightwatch-autorun",
"lint": "eslint --cache .",
"precommit": "npm run lint -s",
"prepush": "npm run test -s",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nkbt/react-height.git"
},
"keywords": [
"component",
"react-component",
"react",
"height",
"height-reporter"
],
"author": "Nik Butenko <[email protected]> (http://butenko.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkbt/react-height/issues"
},
"homepage": "https://github.com/nkbt/react-height",
"peerDependencies": {
"react": "^0.14 || ^15"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.10.4",
"babel-eslint": "6.1.0",
"babel-loader": "6.2.4",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-plugin-webpack-loaders": "0.7.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"codecov.io": "0.1.6",
"cross-env": "1.0.8",
"css-loader": "0.23.1",
"eslint": "3.0.0",
"eslint-loader": "1.4.0",
"eslint-plugin-react": "5.2.2",
"glob": "7.0.5",
"html-webpack-plugin": "2.22.0",
"husky": "0.11.4",
"isparta": "4.0.0",
"json-loader": "0.5.4",
"nightwatch-autorun": "2.3.1",
"parallelshell": "2.0.0",
"react-dom": "15.2.0",
"react": "15.2.0",
"rimraf": "2.5.3",
"sinon": "1.17.4",
"style-loader": "0.13.1",
"tap-nyan": "0.0.2",
"tap-xunit": "1.4.0",
"tape": "4.6.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.1"
}
}