This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
109 lines (109 loc) · 3.48 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "s3uploader",
"version": "0.2.0",
"description": "An UI for AWS S3",
"displayName": "S3Uploader",
"author": {
"name": "Michael Lu",
"email": "[email protected]"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/Yamazaki93/s3uploader"
},
"main": "./dist/main.js",
"scripts": {
"build": "tsc --inlineSourceMap false",
"build-prod": "tsc --inlineSourceMap false --sourceMap false",
"watch": "tsc -w",
"build-tests": "rimraf app/tests/dist && tsc -p app/tests",
"test": "npm run build && npm run build-tests && mocha --timeout 20000 \"./app/tests/dist/**/*.js\"",
"test:unit": "npm run build && npm run build-tests && mocha --timeout 20000 \"./app/tests/dist/tests/unit/*.js\"",
"test:ci": "npm run build && npm run build-tests && mocha --reporter mocha-jenkins-reporter --timeout 20000 \"./app/tests/dist/tests/unit/**/*.js\"",
"test:all": "npm run build && npm run build-tests && mocha -R mocha-jenkins-reporter --timeout 20000 \"./app/tests/dist/**/*.js\"",
"test:one": "npm run build && npm run build-tests && mocha --watch -u bdd \"./app/tests/dist/**/*.js\"",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "npm run build && electron ./dist/main.js",
"postinstall": "electron-builder install-app-deps",
"dist": "npm run build && electron-builder --publish never"
},
"build": {
"appId": "com.rhodiumcode.s3uploader",
"productName": "S3Uploader",
"generateUpdatesFilesForAllChannels": true,
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}",
"!dist-electron",
"!app",
"!*.json",
"!build.ps1",
"!README.md",
"!yarn.lock",
"!Jenkinsfile",
"!misc",
"!.vscode"
],
"directories": {
"buildResources": "build",
"output": "dist-electron"
},
"publish": {
"provider": "github"
},
"mac": {
"target": [
{
"target": "dmg"
},
{
"target": "zip"
}
],
"icon": "build/icon.icns",
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"extends": null
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/rimraf": "^2.0.2",
"@types/sinon": "^5.0.5",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "2.0.8",
"electron-builder": "^20.39.0",
"electron-chromedriver": "^3.0.0-beta.1",
"mocha": "^5.2.0",
"mocha-jenkins-reporter": "^0.4.1",
"rimraf": "^2.6.2",
"spectron": "^4.0.0",
"tslint": "^5.10.0",
"typescript": "^3.1.6"
},
"dependencies": {
"aws-sdk": "^2.334.0",
"axios": "^0.19.0",
"electron-google-analytics": "^0.1.0",
"electron-log": "^3.0.1",
"electron-updater": "^4.0.0",
"sinon": "^7.0.0",
"uuid": "^3.3.2"
}
}