-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.27 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
{
"name": "code-ownership-vscode",
"version": "0.0.7",
"publisher": "Gusto",
"displayName": "Code Ownership for VSCode",
"description": "VSCode extension Big Rails Code Ownership",
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/rubyatscale/code-ownership-vscode.git"
},
"contributes": {
"commands": [
{
"command": "code-ownership-vscode.run",
"title": "Run",
"category": "Code Ownership"
},
{
"command": "code-ownership-vscode.showOwnershipInfo",
"title": "Show ownership info",
"category": "Code Ownership"
}
]
},
"scripts": {
"test": "jest --passWithNoTests",
"clean": "run-s -s clean:*",
"lint": "run-s -s lint:*",
"fix": "run-s -s fix:*",
"clean:output": "rimraf dist",
"start": "node ./dist/index.js",
"prebuild": "run-s -s clean lint",
"build": "run-s compile",
"build:prod": "run-s package",
"lint:eslint": "eslint src/**/*.*",
"fix:eslint": "eslint --fix src/**/*.*",
"lint:prettier": "prettier -c .",
"fix:prettier": "prettier -w .",
"clean:coverage": "rimraf coverage",
"pretest": "run-s -s clean",
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map"
},
"keywords": [],
"author": "",
"files": [
"dist"
],
"private": true,
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.31",
"@types/vscode": "^1.67.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"glob": "^8.0.1",
"jest": "^27.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.3.0",
"typescript": "^4.5.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.2"
},
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0"
}
}