-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
47 lines (47 loc) · 998 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
38
39
40
41
42
43
44
45
46
47
{
"name": "code-eol",
"displayName": "code-eol",
"description": "Display newline characters in your code",
"version": "0.3.3",
"publisher": "sohamkamani",
"repository": {
"url": "https://github.com/sohamkamani/code-eol"
},
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "/Users/soham/go/src/github.com/sohamkamani/vscode-eol/node_modules/typescript/bin/tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.1.5",
"typescript": "^2.5.3",
"@types/node": "7.0.4"
},
"dependencies": {
"vsce": "^1.36.2"
},
"contributes": {
"configuration": [{
"type": "object",
"title": "code-eol Configuration",
"properties": {
"code-eol.color": {
"type": ["string", "null"],
"default": null
}
}
}]
}
}