-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "laser-theme",
"displayName": "Lasers",
"description": "An Outrun theme with italics, based on the popular GMK Laser keycap set from MiTo.",
"version": "0.12.3",
"repository": {
"type": "git",
"url": "https://github.com/j0hnm4r5/laser-theme"
},
"publisher": "j0hnm4r5",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Themes"
],
"icon": "assets/images/logo.png",
"galleryBanner": {
"color": "#C6E4E4",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Lasers",
"uiTheme": "vs-dark",
"path": "compiled/Lasers.json"
}
]
},
"scripts": {
"build": "node index.js",
"start": "nodemon index.js --watch theme.js --watch colors.js"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-no-use-extend-native": "^0.3.12",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-unicorn": "^4.0.3",
"esm": "^3.0.71",
"nodemon": "^1.18.2",
"prettier": "^1.13.7"
}
}