-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
62
63
64
65
66
{
"name": "create-snippet",
"description": "npx tool for generating code snippets",
"keywords": [
"snippet",
"code-snippet",
"create-snippet",
"create-code-snippet",
"automating-code-creation",
"code-generation"
],
"version": "1.7.0",
"license": "ISC",
"bin": {
"create-snippet": "./dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zharinov-nikita/create-snippet.git"
},
"bugs": {
"url": "https://github.com/zharinov-nikita/create-snippet/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/zharinov-nikita/create-snippet#readme",
"scripts": {
"build": "tsc",
"lint": "npx eslint --color ./src",
"test": "jest --verbose --colors --watchAll ./src",
"pre-test": "jest --verbose --colors ./src",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@types/glob": "^8.0.1",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"@types/recursive-readdir": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-jest": "^29.3.1",
"eslint": "^8.32.0",
"glob": "^8.1.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"node-cache": "^5.1.2",
"prompts": "^2.4.2",
"recursive-readdir": "^2.2.3"
}
}