forked from lukehorvat/react-osx-dock
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "react-osx-dock",
"version": "1.0.0",
"description": "React component that is magnifiable like the Mac OS X dock.",
"author": "Luke Horvat",
"license": "MIT",
"repository": "lukehorvat/react-osx-dock",
"main": "dist",
"scripts": {
"build": "node_modules/.bin/babel lib -d dist -q",
"prebuild": "node_modules/.bin/rimraf dist",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "node_modules/.bin/electron test/index.html"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"electron": "1.7.9",
"react": "16.0.0",
"react-dom": "16.0.0",
"rimraf": "2.5.4"
},
"peerDependencies": {
"react": ">= 16.0.0",
"react-dom": ">= 16.0.0"
},
"keywords": [
"react",
"component",
"osx",
"mac",
"dock",
"magnifiable"
],
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}