-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.18 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.18 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
{
"name": "awesome.json",
"version": "1.0.0",
"description": "awesome.json(A curated list in JSON format)",
"main": "index.js",
"engines": {
"node": ">=18"
},
"dependencies": {
"awesomelists-index": "^0.3.2",
"cheerio": "^1.0.0-rc.10",
"debug": "^3.1.0",
"p-limit": "^3.1.0"
},
"scripts": {
"test": "node --test tests/*.test.js",
"awesome": "cd scrapers && node awesome.js && mv ../test-output/awesome.json ../jsons/awesome",
"ai-awesome": "node scrapers/md-awesome.js",
"build": "git pull --no-edit origin master && cd scrapers && node gen-all-awesome-list.js && mv ./awesome-json/sindresorhus-awesome.json ../all-github-path && mv ./awesome-json/*.json ../jsons/repo-json",
"push": "git add --all . && git commit -m \":chart_with_upwards_trend: UPDATE JSON AT `date`\" && git push origin update-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lockys/awesome.json.git"
},
"author": "Calvin Jeng <locky4567@gmail.com> (https://github.com/lockys)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lockys/awesome.json/issues"
},
"homepage": "https://github.com/lockys/awesome.json#readme"
}