-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "nyaovim",
"productName": "NyaoVim",
"version": "0.2.0",
"description": "Web-enhanced Extensible Neovim Frontend",
"main": "main/main.js",
"bin": "./bin/cli.js",
"scripts": {
"dep": "npm install && bower install",
"build:main": "tsc --pretty -p main",
"build:renderer": "tsc --pretty -p renderer",
"build": "npm-run-all -p build:main build:renderer",
"tslint:renderer": "tslint -p renderer/",
"tslint:main": "tslint -p main/",
"nsp": "nsp check",
"lint": "npm-run-all -p tslint:renderer tslint:main nsp",
"app": "cross-env NODE_ENV=production electron .",
"debug": "cross-env ELECTRON_ENABLE_STACK_DUMPING=true NODE_ENV=debug electron .",
"start": "npm-run-all dep build app",
"build:test": "tsc --pretty -p test/",
"smoke-test": "npm run build:test && mocha --exit test/smoke",
"watch": "guard --watchdir main renderer test",
"clean": "rm -rf build bower_components node_modules",
"release": "./scripts/make-release.sh"
},
"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": "^1.11.0",
"deep-extend": "^0.5.0",
"electron": "^1.8.4",
"electron-window-state": "^4.1.1",
"mkdirp": "^0.5.1",
"neovim-component": "^0.10.1",
"promised-neovim-client": "^2.0.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/chai": "^4.1.3",
"@types/deep-extend": "^0.4.31",
"@types/electron-window-state": "^2.0.31",
"@types/fbemitter": "^2.0.32",
"@types/flux": "^3.1.7",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.0",
"@types/node": "^9.6.6",
"@types/q": "^1.5.0",
"@types/react": "^16.3.12",
"@types/webdriverio": "^4.10.1",
"bower": "^1.8.4",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"electron-packager": "^12.0.1",
"mocha": "^5.1.1",
"npm-run-all": "^4.1.2",
"nsp": "^3.2.1",
"spectron": "^3.8.0",
"tslint": "^5.9.1",
"typescript": "^2.8.3"
}
}