-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2 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
92
93
94
95
96
97
98
{
"name": "ClimateQuery",
"description": "ClimateQuery Weather Data Processing Tool",
"homepage": "https://github.com/adamrehn/ClimateQuery",
"main": "source/js/main.js",
"version": "1.0.4",
"files": [
"source/js",
"source/css",
"source/index.html"
],
"engines": {
"node": ">=8.0.0"
},
"author": {
"name": "Adam Rehn",
"email": "adam.rehn@my.jcu.edu.au"
},
"repository": {
"type": "git",
"url": "https://github.com/adamrehn/ClimateQuery.git"
},
"dependencies": {
"cheerio": "*",
"crypto-js": "*",
"csv-parse": "*",
"csv-stringify": "*",
"dateformat": "*",
"electron-is-dev": "*",
"glob": "*",
"immutable": "*",
"isnumeric": "*",
"jquery": "*",
"mathjs": "*",
"mkdirp": "*",
"numeral": "*",
"pad": "*",
"pad-number": "*",
"request": "*",
"sqlite3": "*",
"unzip": "*",
"util.promisify": "*"
},
"devDependencies": {
"devtron": "*",
"electron": "*",
"electron-builder": "*",
"electron-css-reload": "*",
"rimraf": "*",
"tslint": "*",
"typescript": "2.9.2",
"@types/cheerio": "*",
"@types/crypto-js": "*",
"@types/csv-parse": "*",
"@types/csv-stringify": "*",
"@types/glob": "*",
"@types/jquery": "*",
"@types/mathjs": "*",
"@types/mkdirp": "*",
"@types/numeral": "*",
"@types/request": "*",
"@types/sqlite3": "*"
},
"build": {
"appId": "au.edu.jcu.climatequery",
"compression": "maximum",
"mac": {
"category": "public.app-category.utilities",
"target": [
"zip",
"dmg",
"pkg",
"dir"
]
},
"win": {
"target": [
"nsis",
"zip",
"dir"
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
}
},
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist ./node_modules ./source/js",
"dist": "npm run build && build",
"lint": "tslint --project ./tsconfig.json --type-check --format verbose",
"pack": "npm run build && build --dir",
"postinstall": "electron-builder install-app-deps",
"start": "npm run build && electron ."
}
}