This repository has been archived by the owner on Aug 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
84 lines (84 loc) · 2.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
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
81
82
83
84
{
"name": "veonim",
"version": "0.13.1",
"description": "simple modal IDE built on neovim",
"main": "build/bootstrap/main.js",
"scripts": {
"postinstall": "node tools/postinstall.js",
"start": "node tools/start.js",
"start:release": "electron build/bootstrap/main.js",
"build": "node tools/build.js",
"package": "node tools/package.js",
"test": "mocha test/unit",
"test:e2e": "mocha test/e2e -t 0",
"test:e2e:snapshot": "npm run test:e2e -- --snapshot",
"test:integration": "mocha test/integration -t 10000",
"test:watch": "npm run test -- -w",
"test:integration:watch": "npm run test:integration -- -w",
"gen:api": "node tools/gen-api.js",
"gen:font-sizes": "electron tools/font-sizer/index.js",
"unused-exports": "ts-unused-exports tsconfig.json $(find src -name *.ts)",
"setup-mirrors": "node tools/setup-mirrors.js"
},
"jest": {
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/veonim/veonim.git"
},
"vscode-api-version": "1.27.2",
"repository-mirrors": [
"[email protected]:veonim/veonim.git",
"https://[email protected]/veonim/veonim.git",
"https://[email protected]/veonim/veonim.git"
],
"author": "VeonimDev",
"license": "MIT",
"bugs": {
"url": "https://github.com/veonim/veonim/issues"
},
"homepage": "https://github.com/veonim/veonim#readme",
"bindeps-darwin": {
"@veonim/neovim-mac": "0.3.1-2",
"@veonim/ripgrep-mac": "0.0.1",
"all-other-unzip-libs-suck-mac": "0.0.2"
},
"bindeps-win32": {
"@veonim/neovim-win": "0.0.3",
"@veonim/ripgrep-win": "0.0.1",
"all-other-unzip-libs-suck-win": "0.0.2"
},
"bindeps-linux": {
"@veonim/neovim-linux": "0.0.4",
"@veonim/ripgrep-linux": "0.0.1",
"all-other-unzip-libs-suck-linux": "0.0.2"
},
"dependencies": {
"fuzzaldrin-plus": "0.4.1",
"hyperapp": "1.2.9",
"hyperapp-feather": "0.4.0",
"hyperapp-seti": "0.2.0",
"marked": "0.5.0",
"msgpack-lite": "0.1.26",
"vscode-debugprotocol": "1.29.0",
"vscode-languageserver-protocol": "3.9.0"
},
"devDependencies": {
"@deomitrus/hyperapp-redux-devtools": "1.2.0",
"@medv/finder": "1.1.0",
"@types/fuzzaldrin-plus": "0.0.1",
"@types/msgpack-lite": "0.1.4",
"@types/node": "9.4.0",
"electron": "2.0.8",
"electron-builder": "20.13.3",
"electron-devtools-installer": "2.2.3",
"fs-extra": "5.0.0",
"jscodeshift": "0.3.32",
"mocha": "5.2.0",
"proxyquire": "2.0.1",
"spectron": "4.0.0",
"ts-unused-exports": "2.0.5",
"typescript": "2.8.1"
}
}