-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "concrete5-snippets",
"displayName": "Concrete5 snippets",
"description": "Concrete5 snippets",
"publisher": "c5snippets",
"version": "0.0.4",
"preview": true,
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other",
"Snippets"
],
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/pukafever/c5_snippets"
},
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/php.json"
},
{
"language": "html",
"path": "./snippets/html.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"format": "prettier --write {src,snippets}/**/*",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"prepare": "husky install",
"release": "npm run pretest && standard-version --skip.changelog"
},
"devDependencies": {
"@types/node": "20.6.3",
"@types/vscode": "1.62.0",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"standard-version": "^9.5.0",
"typescript": "5.2.2"
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write"
}
}