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
73 lines (73 loc) · 1.75 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.75 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fd-react-trix",
"version": "0.4.0",
"description": "React wrapper around Basecamp's Trix editor.",
"main": "main.js",
"scripts": {
"build": "npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js",
"build:lib": "rm ./lib/* && tsc",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build",
"postbuild": "NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/dstpierre/react-trix"
},
"keywords": [
"react",
"component",
"edit",
"editable",
"wysiwyg",
"trix",
"editor",
"trix-editor"
],
"author": {
"name": "Dominic St-Pierre",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dstpierre/react-trix/issues"
},
"homepage": "https://github.com/dstpierre/react-trix",
"dependencies": {
"trix": "^0.11.1"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/enzyme": "^2.8.12",
"@types/mocha": "^2.2.48",
"@types/react": "^15.6.18",
"@types/react-dom": "^0.14.23",
"@types/sinon": "^1.16.36",
"chai": "^3.5.0",
"enzyme": "^2.9.1",
"http-server": "^0.9.0",
"jsdom": "^9.12.0",
"mocha": "^3.5.3",
"react": "^16.4.0",
"react-addons-test-utils": "^16.4.0",
"react-dom": "^16.4.0",
"sinon": "^2.4.1",
"source-map-loader": "^0.2.3",
"ts-loader": "^2.3.7",
"typescript": "^2.9.2",
"webpack": "^2.7.0"
},
"peerDependencies": {
"react": ">=16.0 < 17",
"react-dom": ">=16.0 < 17"
},
"files": [
"dist",
"lib",
"README.md",
"LICENSE",
"main.js"
],
"types": "lib/react-trix.d.ts"
}