forked from jxnblk/react-css-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 957 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 957 Bytes
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
{
"name": "react-css-editor",
"version": "1.0.1",
"description": "React textarea component for editing style objects as CSS strings",
"main": "dist/CSSEditor.js",
"scripts": {
"dev": "webpack-dev-server",
"docs": "NODE_ENV=production webpack",
"prepublish": "babel src --out-dir dist",
"test": "ava"
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"axs": "^1.0.6",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"css-to-object": "^1.0.0",
"objss": "^1.0.2",
"prop-types": "^15.5.8"
}
}