-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
37 lines (37 loc) · 928 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
{
"name": "monaco-themes",
"version": "0.4.4",
"description": "Themes for monaco editor in web browser",
"main": "src/index.js",
"scripts": {
"prepublishOnly": "npm run build && npm run download && npm run generate",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"download": "node ./scripts/download.js",
"generate": "node ./scripts/generate.js"
},
"keywords": [
"monaco",
"editor",
"themes"
],
"files": [
"themes",
"src",
"dist",
"README.md"
],
"author": "Brijesh <[email protected]>",
"repository": "github:brijeshb42/monaco-themes",
"homepage": "https://editor.bitwiser.in/",
"license": "MIT",
"devDependencies": {
"follow-redirects": "^1.9.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"fast-plist": "^0.1.3"
}
}