-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"scripts": {
"build": "tsc -b",
"lint": "eslint ./src --ext .ts,.js",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@src": "link:src"
},
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-scope": "^7.2.2",
"eslint-visitor-keys": "^3.4.2",
"husky": "8.0.3",
"jest": "^29.5.0",
"prettier": "3.0.0",
"prettier-linter-helpers": "^1.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"name": "laygo",
"version": "0.0.1",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ringoldsdev/laygo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ringoldsdev/laygo/issues"
},
"homepage": "https://github.com/ringoldsdev/laygo#readme",
"description": "Type-safe pipelines for Typescript",
"husky": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test"
}
}