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.74 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.74 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": "react-trix",
"version": "0.2.2",
"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": "dominic@roadmap.space"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dstpierre/react-trix/issues"
},
"homepage": "https://github.com/dstpierre/react-trix",
"dependencies": {
"trix": "0.10.1"
},
"devDependencies": {
"@types/chai": "3.4.35",
"@types/enzyme": "2.7.6",
"@types/mocha": "2.2.40",
"@types/react": "15.0.18",
"@types/react-dom": "0.14.23",
"@types/sinon": "1.16.36",
"chai": "3.5.0",
"enzyme": "2.8.0",
"http-server": "0.9.0",
"jsdom": "9.12.0",
"mocha": "3.2.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^16.0.0",
"sinon": "2.1.0",
"source-map-loader": "0.2.0",
"ts-loader": "2.0.2",
"typescript": "2.2.1",
"webpack": "2.3.0"
},
"peerDependencies": {
"react": ">=0.14.0 <= 15",
"react-dom": ">=0.14.0 <= 15"
},
"files": [
"dist",
"lib",
"README.md",
"LICENSE",
"main.js"
],
"types": "lib/react-trix.d.ts"
}