-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 3.03 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "git-essentials",
"version": "0.0.0-development",
"description": "A collection of essential Git commands for your browser and Node.js",
"type": "module",
"main": "dist/esm/index.js",
"types": "index.d.ts",
"typesVersions": {
">=4.2": {
"*": [
"dist/types/*"
]
}
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./api/*": {
"types": "./dist/types/api/*.d.ts",
"default": "./dist/esm/api/*.js"
},
"./errors": {
"types": "./dist/types/errors/index.d.ts",
"default": "./dist/esm/errors/index.js"
},
"./errors/*": {
"types": "./dist/types/errors/*.d.ts",
"default": "./dist/esm/errors/*.js"
},
"./models/*": {
"types": "./dist/types/models/*.d.ts",
"default": "./dist/esm/models/*.js"
},
"./clients/*": {
"types": "./dist/types/clients/*.d.ts",
"default": "./dist/esm/clients/*.js"
}
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsc -b ./src/tsconfig.json",
"postbuild": "node ./scripts/fix-build.js",
"test": "jest --coverage",
"test:browser": "NODE_OPTIONS=\"$NODE_OPTIONS -r ./karmaEsmFix.cjs\" karma start",
"test:browsers": "NODE_OPTIONS=\"$NODE_OPTIONS -r ./karmaEsmFix.cjs\" karma start --single-run --browsers ChromeHeadless,WebkitHeadless,FirefoxHeadless",
"semantic-release": "semantic-release",
"gen-doc": "npx typedoc",
"gen-fs-fixture": "node ./scripts/gen-fs-fixture.js",
"gen-http-fixture": "node ./scripts/gen-http-fixture.js"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/NotesHubApp/git-essentials.git"
},
"keywords": [
"git",
"js",
"typescript",
"nodejs",
"browser",
"isomorphic",
"isomorphic-javascript"
],
"author": "Alex Titarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/NotesHubApp/git-essentials/issues"
},
"homepage": "https://github.com/NotesHubApp/git-essentials#readme",
"dependencies": {
"async-lock": "^1.3.2",
"buffer": "^6.0.3",
"clean-git-ref": "^2.0.1",
"crc-32": "^1.2.2",
"diff3": "^0.0.4",
"idb": "6.1.5",
"ignore": "^5.2.0",
"pako": "^1.0.11",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.1.0",
"@types/async-lock": "^1.1.5",
"@types/clean-git-ref": "^2.0.0",
"@types/diff3": "^0.0.0",
"@types/jasmine": "^4.3.0",
"@types/karma": "^6.3.3",
"@types/pako": "^2.0.0",
"@types/sha.js": "^2.4.0",
"jest": "^29.7.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-typescript": "^5.5.3",
"karma-webkit-launcher": "^2.4.0",
"playwright": "^1.44.1",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.28",
"typescript": "^4.8.2"
}
}