forked from rhysd/NyaoVim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "nyaovim",
"productName": "NyaoVim",
"version": "0.0.11",
"description": "Web-enhanced Extensible Neovim Frontend",
"main": "main/main.js",
"bin": "./bin/cli.js",
"scripts": {
"dep": "npm install && $(npm bin)/bower install && $(npm bin)/tsd install && mkdir -p build/renderer",
"build-main": "$(npm bin)/tsc -p $(npm prefix)/main",
"build-renderer": "$(npm bin)/tsc -p $(npm prefix)/renderer",
"build": "npm run build-main && npm run build-renderer",
"lint": "tslint $(git ls-files | grep -E \".ts$\")",
"app": "$(npm bin)/electron $(npm prefix)",
"debug": "NODE_ENV=debug $(npm bin)/electron $(npm prefix)",
"start": "npm run dep && npm run build && npm run app",
"clean": "rm -rf \"$(npm prefix)/build\" \"$(npm prefix)/typings\" \"$(npm prefix)/bower_components\" \"$(npm prefix)/node_modules\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/NyaoVim.git"
},
"keywords": [
"editor",
"extensible",
"WebComponents",
"Neovim",
"nvim",
"Electron",
"Polymer",
"cat",
"meow"
],
"author": "rhysd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/NyaoVim/issues"
},
"homepage": "https://github.com/rhysd/NyaoVim#readme",
"dependencies": {
"about-window": "^0.1.0",
"electron-prebuilt": "^0.36.4",
"mkdirp": "^0.5.1",
"neovim-component": "^0.3.6",
"promised-neovim-client": "^1.0.0"
},
"devDependencies": {
"bower": "^1.7.1",
"browserify": "^12.0.1",
"tsd": "^0.6.5",
"typescript": "^1.7.3"
}
}