-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 2.14 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
65
66
67
68
69
70
71
{
"name": "react-titlebar-osx",
"version": "1.1.0",
"description": "osx controls to use on electron with react",
"main": "lib/index",
"scripts": {
"lint": "eslint 'lib/Titlebar.js'",
"demo-bundle": "webpack --config ./webpack-demo.config.js",
"demo-watch": "webpack --config ./webpack-demo.config.js --watch",
"demo-dev": "npm run demo-watch & http-server demo",
"build:css": "sass --update --sourcemap=none src/css:src/css --style expanded && sass --update --sourcemap=none src/css:lib/css --style expanded",
"build:umd:unmin": "webpack --config ./webpack-umd.config.js",
"build:umd:min": "MINIFY=true webpack --config ./webpack-umd.config.js",
"build:umd": "npm run build:umd:unmin && npm run build:umd:min",
"build:commonjs": "mkdir -p lib && babel ./src -d lib",
"publish": "npm run build:css && npm run build:commonjs && npm run build:umd"
},
"files": [
"*.md",
"umd",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/santomegonzalo/react-titlebar-osx.git"
},
"author": "Gonzalo Santome",
"license": "MIT",
"bugs": {
"url": "https://github.com/santomegonzalo/react-titlebar-osx/issues"
},
"homepage": "https://github.com/santomegonzalo/react-titlebar-osx#readme",
"keywords": [
"reactjs",
"react-component",
"react",
"electron",
"osx",
"titlebar"
],
"dependencies": {
"classnames": "^2.2.5",
"defaultcss": "^1.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"peerDependencies": {
"react": "15.x.x",
"react-dom": "15.x.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"http-server": "^0.9.0",
"node-sass": "^4.1.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.3"
}
}