-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
103 lines (103 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "snips-cli",
"version": "4.0.2",
"description": "Gist backed commandline snippet utility",
"main": "app.js",
"scripts": {
"test": "eslint -c package.json ./src/**/*.ts",
"build": "tsc --outdir bin",
"deploy": "npm run build && np",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/srijanshetty/snips.git"
},
"keywords": [
"gist",
"snippets",
"code",
"snips"
],
"author": "Srijan R Shetty",
"license": "MIT",
"bugs": {
"url": "https://github.com/srijanshetty/snips/issues"
},
"homepage": "https://srijanshetty.in",
"dependencies": {
"chalk": "^3.0.0",
"clipboardy": "^2.2.0",
"commander": "^4.1.0",
"lodash": "^4.17.21",
"node-fzf": "^0.11.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@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",
"husky": "^8.0.1",
"np": "^7.6.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"preferGlobal": "true",
"bin": {
"snips": "./bin/app.js"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/ban-ts-ignore": 0
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
1,
"always",
[
"build",
"cfg",
"chore",
"docs",
"feat",
"fix",
"lint",
"refactor",
"revert"
]
]
}
}
}