-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "vscode-margin-colours",
"displayName": "Margin Colours",
"description": "Display colour badge next to line numbers when any hex, rgb(a) or hsl(a) colours are written in a file",
"version": "1.4.0",
"publisher": "chinchiheather",
"icon": "images/margin-colours-icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chinchiheather/vscode-margin-colours.git"
},
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:coffeescript",
"onLanguage:html",
"onLanguage:jade",
"onLanguage:javascript",
"onLanguage:json",
"onLanguage:php",
"onLanguage:typescript",
"onLanguage:less",
"onLanguage:sass",
"onLanguage:scss",
"onLanguage:css"
],
"main": "./src/extension",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "mocha src/**/*.spec.js",
"test:watch": "npm test -- --watch",
"lint": "eslint ./src",
"vsce:package": "npm run lint && npm test && vsce package",
"vsce:publish": "npm run vsce:package && vsce publish"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"sinon": "^5.1.0",
"sinon-chai": "^3.1.0",
"vsce": "^1.63.0",
"vscode": "^1.1.36"
},
"keywords": [
"colour",
"color",
"line-numbers",
"margin",
"css-in-js"
]
}