-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "@streammedev/hermes",
"version": "2.1.2",
"description": "A composable React component for message composing with autocomplete and formatting",
"main": "index.js",
"keywords": [
"message",
"compose",
"contenteditable",
"autocomplete"
],
"author": "StreamMe",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:StreamMeDev/hermes"
},
"happiness": {
"parser": "babel-eslint"
},
"scripts": {
"test": "npm run babel && happiness && mocha --grep 'BROWSER: ' --invert",
"prepublishOnly": "npm run test",
"postpublish": "git push && git push origin --tags",
"test-browser": "mochify",
"babel": "babel src -d lib",
"dev": "babel --watch src -d lib",
"example-basic": "cd examples/basic && npm i && npm start"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"happiness": "^10.0.2",
"mocha": "^3.2.0",
"mochify": "^2.18.1",
"react-test-renderer": "^16.1.1",
"react": ">15.0.0",
"react-dom": ">15.0.0",
"prop-types": ">15.5.10"
},
"dependencies": {
"@streammedev/flux-store": "^1.0.1",
"@streammedev/flyout": "1.0.0",
"debounce": "^1.0.0",
"i": "^0.3.6",
"selection-range": "^1.1.0"
},
"peerDependencies": {
"react": ">15.0.0",
"react-dom": ">15.0.0",
"prop-types": ">15.5.10"
}
}