-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
128 lines (128 loc) · 4.56 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "neuro-viewer",
"displayName": "NeuroViewer",
"description": "View your neuroimaging files in VSCode!",
"version": "0.0.14",
"publisher": "anibalsolon",
"author": {
"name": "Anibal Solon",
"email": "[email protected]",
"url": "https://anibalsolon.com/"
},
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Visualization",
"Data Science",
"Other"
],
"keywords": [
"neuroimaging",
"neuroscience",
"MRI",
"Nifti"
],
"icon": "neuro-viewer.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/anibalsolon/vscode-neuro-viewer.git"
},
"bugs": {
"url": "https://github.com/anibalsolon/vscode-neuro-viewer/issues",
"email": "[email protected]"
},
"activationEvents": [
"onCustomEditor:neuro-viewer.Nifti"
],
"main": "./dist/extension-vscode.js",
"browser": "./dist/extension-web.js",
"contributes": {
"customEditors": [
{
"viewType": "neuro-viewer.Nifti",
"displayName": "Nifti Viewer",
"priority": "default",
"selector": [
{
"filenamePattern": "*.nii"
},
{
"filenamePattern": "*.nii.gz"
}
]
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"webpack:dev": "webpack --mode development --watch",
"webpack:prod": "webpack --mode production",
"test:unit": "mocha",
"test:unit:grep": "mocha --grep",
"test:unit:coverage": "nyc --no-clean npm run test:unit",
"test:vscode": "tsc -p . --outDir .test_output && cp -R ./test/data ./.test_output/test && node ./.test_output/test/runTest.js",
"test:vscode:coverage": "nyc --no-clean npm run test:vscode",
"test:web": "tsc -p . --outDir .test_output && cp -R ./test/data ./.test_output/test && vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=./.test_output/test/runTest.js",
"test:web:coverage": "nyc --no-clean npm run test:vscode",
"test:merge": "rm -f ./.nyc_output/coverage.json && nyc merge .nyc_output ./.nyc_output/coverage.json && nyc report",
"test:coverage": "npm run clear && npm run test:unit:coverage && npm run test:vscode:coverage && npm run test:web:coverage && npm run test:merge && npm run test:coverage:upload",
"test:coverage:upload": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clear": "rm -rf dist coverage ./.vscode-test ./.vscode-test-web ./.nyc_output ./.test_output neuro-viewer-*.vsix",
"vscode:prepublish": "webpack --mode production",
"vscode:package": "vsce package",
"vscode:vsce:publish": "vsce publish -i neuro-viewer-*.vsix --pat",
"vscode:ovsx:publish": "ovsx publish neuro-viewer-*.vsix --pat",
"vscode:vsce": "vsce",
"vscode:ovsx": "ovsx",
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=. data"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/uuid": "^8.3.4",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vscode/test-electron": "^2.1.3",
"@vscode/test-web": "^0.0.22",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"chai": "^4.3.6",
"copy-webpack-plugin": "^10.2.4",
"coveralls": "^3.1.1",
"css-loader": "^6.7.1",
"eslint": "^8.11.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"ovsx": "^0.3.0",
"source-map-support": "^0.5.21",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"util": "^0.12.4",
"vsce": "^2.7.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@vscode/codicons": "^0.0.29",
"process": "^0.11.10",
"uuid": "^8.3.2"
}
}