forked from rob-race/react-trix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "react-trix",
"version": "0.1.1",
"description": "React wrapper around Trix editor from Base Camp.",
"main": "lib/react-trix.js",
"scripts": {
"build": "npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js",
"build:lib": "babel src --out-dir lib --stage 0",
"dev": "webpack-dev-server --devtool eval --hot --progress --colors",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build",
"postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/souporserious/react-trix"
},
"keywords": [
"react",
"component",
"edit",
"editable",
"wysiwyg",
"trix",
"editor",
"trix-editor"
],
"author": "Travis Arnold <travis@souporserious.com> (http://souporserious.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/souporserious/react-trix/issues"
},
"homepage": "https://github.com/souporserious/react-trix",
"dependencies": {
"react": "^0.13.3",
"trix": "^0.9.0"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^5.8.23",
"babel-core": "^5.6.15",
"babel-loader": "^5.2.2",
"css-loader": "^0.15.1",
"http-server": "^0.8.0",
"node-sass": "^3.2.0",
"react": "^0.13.3 || ^0.14.0-beta1",
"sass-loader": "^1.0.2",
"style-loader": "^0.12.3",
"webpack": "^1.9.12",
"webpack-dev-server": "^1.9.0"
}
}