forked from bryaneaton13/react-pull-to-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "react-pull-to-refresh",
"version": "1.0.6",
"description": "A React component for pull to refresh on the web.",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bryaneaton13/react-pull-to-refresh.git"
},
"homepage": "",
"bugs": "https://github.com/bryaneaton13/react-pull-to-refresh/issues",
"directories": {
"example": "examples"
},
"scripts": {
"test": "eslint lib examples && NODE_ENV=test karma start karma.conf.js --single-run --browsers Chrome",
"start": "webpack-dev-server --inline --config webpack.config.js --content-base examples/",
"clean": "rimraf lib dist",
"build": "npm run clean && npm run build:lib && npm run build:file && npm run build:minify",
"build:lib": "babel src --out-dir lib",
"build:file": "webpack --config webpack.build.js",
"build:minify": "MINIFY=1 npm run build:file",
"prepublish": "npm run build"
},
"authors": [
"Bryan Eaton"
],
"license": "MIT",
"devDependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-eslint": "4.1.3",
"babel-loader": "5.3.2",
"eslint": "1.6.0",
"eslint-plugin-react": "3.5.1",
"react": "^0.14.3",
"react-dom": "0.14.2",
"rimraf": "^2.4.4",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
},
"tags": [
"react",
"pull-to-refresh",
"refresh",
"web-pull-to-refresh"
],
"keywords": [
"react",
"react-component",
"pull-to-refresh",
"refresh",
"web-pull-to-refresh"
],
"dependencies": {
"hammerjs": "^2.0.4"
}
}