-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.3 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
{
"name": "vscode-theme-neon-night",
"description": "Dark VS Code Theme",
"publisher": "chaseadamsio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chaseadamsio/vscode-theme-neon-night"
},
"private": true,
"version": "0.38.0",
"scripts": {
"build": "node src/index.js",
"clean": "rm -rf themes",
"cp:static": "cp README.md themes && cp LICENSE themes && cp CHANGELOG.md themes && cp -R static themes",
"develop:init": "(test -L $HOME/.vscode/extensions/chaseadamsio.vscode-theme-neon-night@develop || ln -s $PWD/themes $HOME/.vscode/extensions/chaseadamsio.vscode-theme-neon-night@develop) && yarn build",
"release": "release-it minor --ci",
"test:check-code": "yarn test:lint && yarn test:flow",
"test:flow": "flow check",
"test:lint": "eslint --ignore-path .gitignore --ext .js,.jsx .",
"prepublish": "(test -d themes || mkdir themes) && yarn build && yarn cp:static",
"vscode:publish": "cd themes && vsce publish -p $VSCE_TOKEN"
},
"dependencies": {
"auto-changelog": "^1.13.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-flowtype": "^3.9.0",
"flow-bin": "^0.98.1",
"prettier": "^1.17.1",
"release-it": "^12.2.0",
"vsce": "^1.61.0"
}
}