-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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-morph",
"version": "0.0.1",
"description": "Set of custom morphing components",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/theres/react-morph.git"
},
"bugs": {
"url": "https://github.com/theres/react-morph/issues"
},
"homepage": "https://github.com/theres/react-morph",
"keywords": [
"react",
"react-component",
"morphing",
"morph",
"dom",
"element"
],
"author": {
"name": "Dominik Markiewicz",
"email": "theresq@gmail.com"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.2.3"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.19",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"css-loader": "^0.22.0",
"html-webpack-plugin": "^1.6.2",
"node-sass": "^3.4.2",
"postcss-loader": "^0.8.0",
"react": "^0.14.2",
"react-clickdrag": "^3.0.1",
"react-dom": "^0.14.2",
"sass-loader": "^3.1.2",
"scss-loader": "0.0.1",
"style-loader": "^0.13.0",
"svg-inline-loader": "^0.4.0",
"svg-inline-react": "^0.3.1",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.14.x"
},
"peerDependencies": {
"react": "0.14.x",
"react-dom": "0.14.x"
},
"scripts": {
"demo": "webpack-dev-server --port 6060 --watch-poll --progress --hot --inline",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile"
}
}