forked from gabrielbull/react-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "react-desktop",
"author": "Gabriel Bull",
"version": "0.1.35",
"description": "React UI Components for OS X El Capitan and Windows 10",
"main": "./lib/index.js",
"keywords": [
"react",
"react-component",
"electron",
"node-webkit",
"native",
"desktop",
"ui",
"user",
"interface",
"component",
"os x",
"windows"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gabrielbull/react-desktop.git"
},
"dependencies": {
"radium": "^0.14.3"
},
"peerDependencies": {
"react": "~0.14",
"react-dom": "~0.14"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"eslint": "^1.6.0",
"eslint-plugin-react": "^3.5.1",
"html-webpack-plugin": "^1.6.2",
"mocha": "^2.3.3",
"react-color": "^1.2.1",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
},
"scripts": {
"test": "mocha --compilers js:babel/register --recursive",
"lint": "./node_modules/.bin/eslint ./src ./test",
"prebuild": "rm -rf lib",
"build": "npm run lint && babel --stage 0 ./src --out-dir ./lib",
"prepublish": "npm run build",
"playground": "webpack-dev-server --config ./playground/webpack.config.js --colors --inline --port 3000"
}
}