-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
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
{
"name": "parse-git-diff",
"version": "0.0.20",
"description": "A parser for git diff",
"main": "./build/cjs/index.js",
"module": "./build/mjs/index.js",
"types": "./build/cjs/index.d.ts",
"source": "./playground/index.html",
"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:playground": "gh-pages -d playground-out",
"check:all": "prettier --check . && tsc --noEmit && yarn test",
"build:readme": "node scripts/build-readme.js && yarn format",
"dev": "parcel",
"build:playground": "yarn build && parcel build --dist-dir ./playground-out"
},
"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": "^6.3.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"md-replacer": "^0.0.4",
"parcel": "^2.15.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"files": [
"build"
],
"targets": {
"types": false,
"main": false,
"module": false
},
"keywords": [
"git",
"git diff"
],
"packageManager": "yarn@4.0.2"
}