-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "dependency-submission-dump",
"version": "0.2.2",
"description": "",
"main": "src/index.ts",
"bin": {
"dsd": "./dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"lint": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"build": "babel src --out-dir dist --extensions .ts,.tsx && ncc build dist/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/williamfzc/dependency-submission-dump.git"
},
"author": "williamfzc",
"license": "MIT",
"bugs": {
"url": "https://github.com/williamfzc/dependency-submission-dump/issues"
},
"homepage": "https://github.com/williamfzc/dependency-submission-dump#readme",
"dependencies": {
"@github/dependency-submission-toolkit": "^1.2.10",
"jsondiffpatch": "^0.4.1"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"commander": "^11.0.0",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}