-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
64 lines (64 loc) · 1.55 KB
/
package.json
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
{
"name": "react-wysiwyg",
"version": "2.2.1",
"description": "enable limited interaction with a content editable element, useful for in-place, wysiwyg editing",
"main": "index.js",
"scripts": {
"test": "karma start",
"e2e": "node_modules/nightwatch/bin/nightwatch --test __tests__/e2e/*"
},
"keywords": [
"react",
"contenteditable",
"textarea",
"forms"
],
"author": "Ben McMahen",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:bmcmahen/react-wysiwyg.git"
},
"bugs": {
"url": "https://github.com/bmcmahen/react-wysiwyg/issues"
},
"homepage": "https://github.com/bmcmahen/react-wysiwyg/",
"devDependencies": {
"babel": "^5.8.20",
"babel-runtime": "^5.8.20",
"babelify": "^6.1.3",
"browserify": "^8.1.1",
"expect": "^1.8.0",
"http-server": "^0.7.4",
"karma": "^0.13.5",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.4",
"karma-phantomjs-launcher": "^0.2.0",
"lodash": "^3.10.1",
"nightwatch": "^0.7.9",
"phantomjs": "^1.9.17",
"react": "^0.13.0",
"watchify": "^3.3.1"
},
"dependencies": {
"classnames": "^2.1.1",
"escape-html": "^1.0.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"selection-range": "^1.0.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}