-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
91 lines (91 loc) · 2.27 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "penguin",
"productName": "Penguin Icon Manager",
"version": "0.0.1",
"description": "My polished app",
"license": "MIT",
"repository": "flaque/penguin",
"author": {
"name": "Evan Conrad",
"email": "[email protected]",
"url": "evanconrad.com"
},
"main": "./main.js",
"engines": {
"node": ">=7"
},
"scripts": {
"test": "jest",
"dist": "node_modules/.bin/build",
"pack": "node_modules/.bin/build --dir",
"start": "export NODE_ENV='dev'; ./node_modules/.bin/electron . & webpack --watch",
"release": "bash scripts/publish_penguin.sh"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"dependencies": {
"canvg": "^0.0.8",
"dataurl": "^0.1.0",
"electron-debug": "^0.2.1",
"fs-jetpack": "^0.12.0",
"is-ci": "^1.0.10",
"lodash": "^4.17.11",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-color": "^2.17.0",
"react-dom": "^15.4.2",
"react-toastr": "^2.8.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^24.5.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^1.1.4",
"css-loader": "^2.1.1",
"electron": "^4.1.1",
"electron-builder": "^20.39.0",
"electron-packager": "^13.1.1",
"imports-loader": "^0.7.1",
"node-loader": "^0.6.0",
"node-sass": "^3.3.3",
"nodemon": "^1.18.10",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"webpack": "^2.2.1"
},
"postinstall": "install-app-deps",
"build": {
"appId": "com.flaque.penguin",
"mac": {
"category": "public.app-category.graphics-design",
"target": [
"pkg",
"dmg",
"zip",
"mas"
],
"entitlements": "build/entitlements.mac.plist",
"identity": "F29L6XF84H",
"type": "distribution",
"icon": "build/icon.icns"
},
"mas": {
"entitlements": "build/entitlements.mas.plist",
"type": "distribution",
"category": "public.app-category.graphics-design"
},
"files": [
"main.js",
"node_modules/**/*",
"app/**/*",
"package.json",
"embedded.provisionprofile"
]
}
}