forked from electron/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.68 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.8782.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"
},
"repository": "https://github.com/electron/apps",
"keywords": [
"electron",
"apps",
"gallery",
"collection",
"showcase"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^16",
"@zeit/fetch-retry": "^5.0.0",
"bottleneck": "^1.16.0",
"chai": "^4.2.0",
"check-for-leaks": "^1.2.0",
"cheerio": "^1.0.0-rc.2",
"clean-deep": "^2.0.1",
"color-convert": "^1.9.1",
"count-array-values": "^1.2.1",
"dotenv-safe": "^4.0.4",
"get-image-colors": "^1.8.1",
"github-url-to-object": "^4.0.2",
"human-interval": "^0.1.6",
"husky": "^4.2.3",
"image-size": "^0.5.0",
"imagemin": "^6.1.0",
"imagemin-pngquant": "^8.0.0",
"inquirer": "^2.0.0",
"is-hexcolor": "^1.0.0",
"is-url": "^1.2.2",
"jimp": "^0.3.5",
"js-yaml": "^3.13.1",
"lint-staged": "^10.0.9",
"make-color-accessible": "^1.2.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.0.1",
"pick-a-good-color": "^1.1.1",
"prettier": "^2.0.2",
"readdirp": "^3.0.2",
"recursive-readdir-sync": "^1.0.6",
"rimraf": "^2.6.1",
"sharp": "^0.23.0",
"sinon": "^7.2.2",
"slugg": "^1.1.0",
"yaml": "^1.9.2"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"json-stable-stringify": "^1.0.1",
"mime-types": "^2.1.19",
"rev-hash": "^2.0.0"
},
"lint-staged": {
"*.{js,ts,yml}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}