forked from AlexxNica/repos-using-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "repos-using-electron",
"version": "1.11.0",
"description": "A collection of all public repositories on GitHub that depend on Electron",
"repository": "https://github.com/electron/repos-using-electron",
"main": "index.js",
"scripts": {
"start": "npm run discover",
"test": "mocha && standard --fix && standard-markdown",
"build": "script/build-lite.js",
"collect": "npm-run-all collect:*",
"collect:repo-names": "node lib/collect/repo-names.js",
"collect:repo-data": "node lib/collect/repo-data.js",
"collect:package-json": "node lib/collect/package-json.js",
"collect:contributors": "node lib/collect/contributors.js",
"collect:releases": "node lib/collect/releases.js",
"collect:first-commit": "node lib/collect/first-commit.js",
"collect:identify-forks": "node lib/collect/identify-forks.js"
},
"keywords": [
"electron",
"github",
"community",
"userland",
"data",
"aggregate",
"stats",
"collection"
],
"author": "Zeke Sikelianos <[email protected]> (http://zeke.sikelianos.com)",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"dotenv-safe": "^4.0.4",
"get-repo-package-json": "^1.0.0",
"limiter": "^1.1.0",
"mocha": "^3.0.2",
"npm-run-all": "^3.1.0",
"octokat": "^0.4.18",
"path-exists": "^3.0.0",
"pify": "^2.3.0",
"request": "^2.74.0",
"standard": "^10.0.3",
"standard-markdown": "^1.2.1"
},
"dependencies": {
"lodash": "^4.17.2",
"nice-package": "^3.0.0",
"require-dir": "^0.3.0"
},
"standard": {
"env": {
"mocha": true
}
}
}