-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
package.json
91 lines (91 loc) · 2.84 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
{
"name": "electron-apps",
"version": "1.9312.0",
"description": "A collection of apps built on Electron",
"main": "index.json",
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "node script/clean",
"build:resize": "node script/resize",
"build:dates": "node script/dates",
"build:colors": "node script/colors",
"build:categories": "node script/categories",
"build:releases": "node script/releases",
"build:readmes": "node script/readmes",
"build:pack": "node script/pack",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks",
"prettier": "prettier --check \"./**/*.{ts,js,yml}\"",
"test": "mocha --reporter min test/human-data.js test/colors-spec.js && prettier --check \"./**/*.{ts,js,yml}\" --write",
"test:debug": "mocha --reporter spec test/human-data.js test/colors-spec.js && prettier --check \"./**/*.{ts,js,yml}\" --write",
"pretest-all": "npm run build",
"test-all": "mocha --reporter min && prettier --check \"./**/*.{ts,js,yml}\" --write",
"wizard": "node wizard.js",
"release": "script/release.sh",
"purge": "npm-run-all remove:*",
"remove:links": "node script/remove-broken-links",
"remove:old": "node script/remove-old-electron-apps",
"remove:disabled": "node script/remove-disabled-apps"
},
"repository": "https://github.com/electron/apps",
"keywords": [
"electron",
"apps",
"gallery",
"collection",
"showcase"
],
"author": "Toinane <[email protected]> (https://electronjs.org/apps)",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^18.12.0",
"bottleneck": "^2.19.5",
"chai": "^4.3.6",
"check-for-leaks": "^1.2.1",
"cheerio": "^1.0.0-rc.10",
"clean-deep": "^3.4.0",
"color-convert": "^2.0.1",
"count-array-values": "^1.2.1",
"dotenv-safe": "^8.2.0",
"get-image-colors": "^4.0.1",
"github-url-to-object": "^4.0.6",
"human-interval": "^2.0.1",
"husky": "^8.0.1",
"image-size": "^1.0.1",
"imagemin": "^7.0.1",
"imagemin-pngquant": "^9.0.2",
"inquirer": "^8.2.4",
"is-hexcolor": "^1.0.0",
"is-url": "^1.2.4",
"jimp": "^0.16.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.4.1",
"make-color-accessible": "^1.2.0",
"mocha": "^10.0.0",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"pick-a-good-color": "^1.1.1",
"prettier": "^2.6.2",
"readdirp": "^3.6.0",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"sharp": "^0.32.6",
"sinon": "^14.0.0",
"slugg": "^1.2.1",
"tinycolor2": "^1.4.2",
"yaml": "^2.0.1"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"json-stable-stringify": "^1.0.1",
"mime-types": "^2.1.35",
"mkdirp": "^1.0.4",
"rev-hash": "^3.0.0"
},
"lint-staged": {
"*.{js,ts,yml}": "prettier --write"
}
}