-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "material-ui-scrolling-techniques",
"version": "0.1.0",
"description": "Scrolling techniques from material design spec for material-ui",
"main": "./lib",
"scripts": {
"clean": "rimraf lib",
"build:examples": "(cd examples && npm run build)",
"build:lib": "babel ./src --out-dir ./lib",
"build": "npm run build:lib && npm run build:examples",
"deploy": "(npm run build:examples && gh-pages -d examples/dist)",
"postinstall": "(cd examples && npm install)",
"start": "(cd examples && npm start)"
},
"repository": {
"type": "git",
"url": "https://github.com/newoga/material-ui-scrolling-techniques.git"
},
"author": "Neil Gabbadon <[email protected]> (http://github.com/newoga)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.14.0",
"gh-pages": "^0.8.0",
"material-ui": "^0.14.2",
"react": "^0.14.6",
"react-addons-shallow-compare": "^0.14.6",
"react-dom": "^0.14.6",
"react-tap-event-plugin": "^0.2.1",
"rimraf": "^2.5.0",
"webpack": "^1.12.11"
},
"peerDependencies": {
"material-ui": "^0.14.2",
"react-addons-shallow-compare": "^0.14.6"
},
"dependencies": {
"recompose": "^0.14.5"
}
}