forked from cameronbourke/react-cardstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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": "react-cardstack",
"version": "0.1.2",
"description": "react component inspired by the iOS passbook app UI",
"main": "dist/index.js",
"keywords": [
"react",
"react-component",
"carousel",
"navigation",
"cards"
],
"repository": {
"type": "git",
"url": "https://github.com/cameronbourke/cardstack.git"
},
"scripts": {
"start": "webpack-dev-server --content-base example/",
"compile": "babel src --out-dir dist",
"build:umd": "webpack",
"build:example": "webpack --config ./example/webpack.config.js --progress --colors",
"prepublish": "npm run compile && npm run build:umd && npm run build:example",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"author": "Cameron Bourke <[email protected]> (http://cameronbourke.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^2.9.0",
"eslint-config-keystone": "^2.2.0",
"eslint-plugin-react": "^5.0.1",
"react-dom": "^15.0.2",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"peerDependencies": {
"react": ">=0.14.5"
}
}