-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "streaming-diff-parser",
"version": "0.0.1",
"description": "Streaming parser for git diffs.",
"main": "dist/index.js",
"author": "Charlie Saunders <charlieasaunders@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/C-Saunders/steaming-diff-parser"
},
"prettier": "./.prettierrc.json",
"scripts": {
"build": "tsc",
"lint": "eslint ./src/**/*",
"start": "ts-node src/index.ts",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "(/__test__/.*\\.test)\\.ts$"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}