-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 869 Bytes
/
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
{
"name": "1loc-vscode",
"description": "VSCode Snippets for JavaScript utilities in one line of code (loc).",
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "nodemon --watch src -e ts,js,mjs src/index.mjs",
"build": "node src/index.mjs",
"package": "yarn build && cd extension && vsce package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeshifu/1loc-vscode.git"
},
"keywords": [
"vscode",
"1loc",
"javascript",
"utilities"
],
"author": {
"name": "Luqman Olushi",
"url": "https://twitter.com/codeshifu"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codeshifu/1loc-vscode/issues"
},
"homepage": "https://github.com/codeshifu/1loc-vscode#readme",
"devDependencies": {
"nodemon": "^2.0.15"
},
"dependencies": {
"glob": "^7.2.0"
}
}