-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "iro",
"version": "1.0.0",
"description": "color inspect for HEX, RGB, and CMYK",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html",
"build:gh": "parcel build src/index.html --no-source-maps --out-dir public",
"deploy:gh": "git subtree push --prefix public"
},
"author": "Ryan Aunur Rassyid <ryandevstudio@gmail.com>",
"contributors": [
"Muhammad Zainul Mutaqqin"
],
"license": "MIT",
"repository": "github:nyancodeid/iro",
"dependencies": {
"color-convert": "^2.0.1",
"gradstop": "^2.2.3",
"preact": "^10.1.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-pwa-manifest": "^2.8.2",
"parcel-plugin-sw-precache": "^1.1.1",
"sass": "^1.23.7"
},
"pwaManifest": {
"name": "IRO - Amazing Color Tools",
"shortName": "IRO",
"startURL": "/",
"theme": "#212121",
"generateIconOptions": {
"baseIcon": "./icon.svg",
"sizes": [
192,
384,
512
],
"genFavicons": true
}
},
"sw-precache": {
"maximumFileSizeToCacheInBytes": 10485760
}
}