-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "github-feed",
"version": "2.1.0",
"description": "Automate checking of common repos for updates",
"main": "src/electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/bookman25/github-feed.git"
},
"scripts": {
"build": "babel src --out-dir src --extensions '.ts,.tsx'",
"ci": "yarn lint && yarn tsc && yarn test --coverage && yarn coveralls",
"coveralls": "minicat coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "tslint --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" **/*.ts **/*.tsx",
"package": "yarn build && electron-packager --overwrite .",
"start": "yarn build && electron .",
"test": "jest",
"tsc": "tsc"
},
"author": "Bryan Nicholls",
"license": "MIT",
"bugs": {
"url": "https://github.com/bookman25/github-feed/issues"
},
"build": {
"appId": "github.feed",
"win": {
"icon": "src/electron/rss.ico"
},
"mac": {
"icon": "src/electron/rss.icns"
}
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@types/aphrodite": "^0.5.10",
"@types/enzyme": "^3.1.10",
"@types/jest": "^22.2.3",
"@types/node": "^10.1.2",
"@types/node-schedule": "0.0.34",
"@types/nodemailer": "^4.6.0",
"@types/react": "*",
"@types/react-dom": "*",
"coveralls": "^3.0.9",
"electron": "^7.1.7",
"electron-packager": "^14.1.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"jest": "^24.9.0",
"minicat": "^1.0.0",
"react-test-renderer": "^16.4.0",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^5.0.3",
"tslint-misc-rules": "^3.5.1",
"tslint-react": "^3.6.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@octokit/rest": "^15.7.0",
"aphrodite": "^1.1.0",
"node-notifier": "^5.2.1",
"node-schedule": "^1.1.1",
"nodemailer": "^4.6.5",
"react": "*",
"react-dom": "*"
}
}