-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "react-atv-img",
"version": "0.1.1",
"description": "A port of @drewwilson’s atvImg (Apple TV 3D parallax effect) library in React",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "NODE_ENV=production babel src --out-dir lib",
"lint": "eslint src",
"test": "NODE_ENV=test mocha",
"test:watch": "NODE_ENV=test mocha --watch",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"example": "NODE_ENV=development node devServer.js",
"build:static": "NODE_ENV=production webpack && cp ./example/index.html ./dist/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keyanzhang/react-atv-img.git"
},
"keywords": [
"react",
"react-component",
"atv",
"Apple TV",
"parallax",
"atvImg"
],
"author": "Keyan Zhang <root@keyanzhang.com> (http://keya.nz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/keyanzhang/react-atv-img/issues"
},
"homepage": "https://github.com/keyanzhang/react-atv-img#readme",
"peerDependencies": {
"react": ">=0.14"
},
"devDependencies": {
"babel": "~5.8.29",
"babel-core": "~5.8.33",
"babel-eslint": "~4.1.3",
"babel-loader": "~5.3.3",
"babel-plugin-react-transform": "~1.1.1",
"eslint": "~1.8.0",
"eslint-config-airbnb": "~0.1.0",
"eslint-plugin-react": "~3.6.3",
"expect": "^1.12.2",
"express": "~4.13.3",
"mocha": "^2.3.3",
"react": "^0.14.1",
"react-dom": "^0.14.1",
"react-transform-catch-errors": "~1.0.0",
"react-transform-hmr": "~1.0.0",
"redbox-react": "~1.1.1",
"rimraf": "~2.4.3",
"webpack": "~1.12.2",
"webpack-dev-middleware": "~1.2.0",
"webpack-hot-middleware": "~2.4.1"
}
}