-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "wiki-as-git",
"version": "0.2.0",
"dependencies": {
"argparse": "^2.0.1",
"dayjs": "^1.11.10",
"isomorphic-git": "^1.24.5",
"mwn": "^2.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@types/argparse": "^2.0.11",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"description": "Check a Wikipedia article's revision history using git commands",
"main": "wiki-as-git.ts",
"scripts": {
"test": "ts-node wiki-as-git.ts -vvv \"Hello world\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bperel/wiki-as-git.git"
},
"keywords": [
"wikipedia",
"git"
],
"engines": {
"node": "^16.0.0"
},
"author": "Bruno Perel",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bperel/wiki-as-git/issues"
},
"homepage": "https://github.com/bperel/wiki-as-git#readme"
}