forked from yeonjuan/parse-git-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "parse-git-diff",
"version": "0.0.17",
"description": "A parser for git diff",
"main": "./build/cjs/index.js",
"module": "./build/mjs/index.js",
"types": "./build/cjs/index.d.ts",
"scripts": {
"prepublish": "yarn build",
"build": "rimraf build && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && bash fixup.sh",
"format": "prettier . --write",
"test": "jest --coverage",
"prebuild": "yarn check:all",
"publish:demo": "gh-pages -d demo/build",
"check:all": "prettier --check . && tsc --noEmit && yarn test",
"build:readme": "node scripts/build-readme.js && yarn format"
},
"exports": {
".": {
"import": "./build/mjs/index.js",
"require": "./build/cjs/index.js",
"default": "./build/mjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeonjuan/parse-git-diff.git"
},
"author": "YeonJuAn",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeonjuan/parse-git-diff/issues"
},
"homepage": "https://github.com/yeonjuan/parse-git-diff#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"gh-pages": "^4.0.0",
"husky": "^7.0.2",
"jest": "^29.7.0",
"md-replacer": "^0.0.4",
"prettier": "^2.4.1",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.5",
"tslib": "^2.3.1",
"typescript": "^5.3.3"
},
"files": [
"build"
],
"keywords": [
"git",
"git diff"
],
"packageManager": "yarn@4.0.2"
}