forked from virtyaluk/react-fashion-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "react-fashion-watch",
"version": "0.1.0",
"description": "A carefully crafted Fashion Watch component for React.",
"main": "dist/react-fashion-watch.min.js",
"style": "dist/react-fashion-watch.min.css",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "./node_modules/.bin/webpack --progress --colors --config dist.config.babel.js",
"dist.min": "./node_modules/.bin/webpack --progress --colors --p --optimize-dedupe --config dist.min.config.babel.js",
"dev-server": "./node_modules/.bin/webpack-dev-server --open --progress --colors --port 8080 --content-base example/",
"build": "npm run dist && npm run dist.min",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtyaluk/react-fashion-watch.git"
},
"keywords": [
"react",
"react-component",
"watch",
"fashion watch",
"ui"
],
"author": {
"name": "Bohdan Shtepan",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/virtyaluk/react-fashion-watch/issues"
},
"homepage": "https://github.com/virtyaluk/react-fashion-watch",
"devDependencies": {
"autoprefixer": "6.3.1",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"css-loader": "0.23.1",
"eslint-loader": "1.2.1",
"eslint-plugin-react": "3.16.1",
"extract-text-webpack-plugin": "1.0.1",
"postcss-loader": "0.8.0",
"react-dom": "^0.14.6",
"sass-loader": "3.1.2",
"style-loader": "0.13.0",
"webpack": "^1.12.12",
"webpack-dev-server": "1.14.1"
},
"peerDependencies": {
"react": "^0.14.6",
"eslint": "1.10.3",
"node-sass": "3.4.2"
},
"dependencies": {
"react-style-normalizer": "1.2.8"
}
}