This repository has been archived by the owner on Jan 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "@dev-sam/tssa",
"version": "0.0.10",
"license": "AGPLv3",
"repository": {
"type": "git",
"url": "https://github.com/SamChou19815/tssa"
},
"scripts": {
"start": "node dist/index.js",
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"lint": "eslint . --ext .ts",
"bundle": "ncc build src/index.ts -o bin -m -e typescript --no-source-map-register --transpile-only",
"build": "tsc",
"test": "jest",
"prepack": "tsc",
"publish": "yarn npm publish --access public"
},
"main": "dist/api.js",
"bin": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@octokit/rest": "^18.0.12",
"@types/diff": "^4.0.2",
"diff": "^5.0.0",
"ts-morph": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@dev-sam/eslint-config-common": "0.17.0",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vercel/ncc": "^0.25.1",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "2.2.1",
"typescript": "4.1.2"
},
"peerDependencies": {
"typescript": "*"
},
"eslintConfig": {
"extends": "@dev-sam/common"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/dist/"
]
}
}