-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.49 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
{
"name": "checksum-validator",
"version": "1.1.6",
"description": "Small Electron application to validate checksums.",
"scripts": {
"babel:watch": "babel ./app/main/src/ -w -d ./app/main/build",
"build:watch": "webpack --env.mode=watch",
"build": "cross-env NODE_ENV=production webpack --env.mode=noWatch --progress",
"dist:mac": "electron-builder -m --x64 --ia32",
"dist:win": "electron-builder -w --x64",
"dist:lin": "electron-builder -l",
"postinstall": "install-app-deps",
"release": "npm run build && electron-builder -ml",
"start": "cross-env ELECTRON_DEV=true electron app/build/main.js",
"test": "mocha",
"tsc:watch": "tsc --watch --p tsconfig.json --declaration --target es5"
},
"author": "Alexander Weiß",
"repository": "https://github.com/alexanderwe/checksum-validator",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "^7.1.0",
"@types/classnames": "^2.2.4",
"@types/mocha": "^ 2.2.48",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8 ",
"@types/react-transition-group": "^2.0.14",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"electron": "^2.0.10",
"electron-builder": "^ 20.28.4",
"electron-devtools-installer": "^2.2.4",
"electron-react-devtools": "^0.5.3",
"electron-reload": "^1.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"less-vars-to-js": "^1.2.1",
"mini-css-extract-plugin": "^0.4.3",
"mocha": "^5.2.0",
"spectron": "^3.7.2",
"style-loader": "^0.20.3",
"ts-import-plugin": "1.4.3",
"ts-loader": "^4.4.1",
"ts-node": "^4.1.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^2.9.1",
"url-loader": "^1.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"build": {
"appId": "com.github.alexanderwe.checksum-validator",
"productName": "Checksum Validator",
"publish": [
{
"provider": "github",
"owner": "alexanderwe",
"repo": "checksum-validator"
}
],
"mac": {
"category": "public.app-category.utilities",
"type": "distribution"
}
},
"devDependenciesComments": {
"less": "Using version 2.7.1 due to an issue, see: "
}
}