-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "easy-git-annex",
"version": "3.0.0",
"description": "JavaScript/TypeScript API for git-annex and Git commands.",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jstritch/easy-git-annex.git"
},
"bugs": {
"url": "https://github.com/jstritch/easy-git-annex/issues"
},
"homepage": "https://jstritch.github.io/easy-git-annex/",
"author": "John Stritch <easy.git.annex@gmail.com>",
"funding": [
"https://ko-fi.com/jstritch",
"https://liberapay.com/jstritch",
"https://www.patreon.com/jstritch",
"https://github.com/sponsors/jstritch"
],
"keywords": [
"git",
"annex",
"git-annex",
"javascript",
"typescript",
"api"
],
"scripts": {
"build": "npx tsc",
"lint": "npx eslint .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:badge": "npm run test:coverage && npx make-coverage-badge",
"test:coverage": "npm run test -- --collectCoverage",
"test:noanx": "npm run test -- --testPathIgnorePatterns=/tests/commands-anx/",
"typedoc": "npx typedoc && git checkout --quiet HEAD ./docs/_config.yml",
"yalc": "yalc publish --no-scripts --push",
"preversion": "npm run lint && npm run test:badge",
"version": "npm run build && npm run typedoc && git add --all .",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.8.0",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-unicorn": "^55.0.0",
"jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"typescript-eslint": "^7.18.0"
}
}