-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 KB
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
{
"browserslist": {
"production": [
"> 2%",
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions",
"last 3 firefox versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"devDependencies": {
"elm": "^0.19.1-6",
"elm-format": "^0.8.8",
"elm-review": "^2.13.5",
"elm-watch": "^2.0.0-beta.12"
},
"scripts": {
"build": "rm -rf dist; elm-watch make --optimize",
"start": "elm-watch hot",
"test": "elm-test"
},
"name": "nuplot",
"description": "A small CAS and plotter",
"pwaManifest": {
"name": "NuPlot",
"shortName": "NuPlot",
"startURL": "./index.html",
"theme": "#dcd0ff",
"generateIconOptions": {
"baseIcon": "./public/icon.svg",
"sizes": [
192,
384,
512
],
"genFavicons": true,
"purpose": [
"any",
"maskable"
]
},
"display": "standalone",
"development": {
"disabled": true
}
}
}