-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "@streammedev/flyout",
"version": "2.0.0",
"description": "An html flyout component",
"main": "index.js",
"keywords": [
"flyout",
"react"
],
"author": "StreamMe",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:StreamMeDev/react-flyout.git"
},
"happiness": {
"parser": "babel-eslint"
},
"scripts": {
"test": "standard && npm-check && npm run build && mocha",
"build": "babel src -d lib",
"dev": "babel --watch src -d lib",
"prepublish": "npm run build",
"postpublish": "git push && git push --tags"
},
"standard": {
"parser": "babel-eslint"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"mocha": "^3.4.2",
"npm-check": "^5.4.4",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"standard": "^10.0.2"
},
"peerDependencies": {
"react": ">15.0.0",
"react-dom": ">15.0.0"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-dom-factories": "^1.0.0"
}
}