-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
68 lines (68 loc) · 1.97 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
{
"name": "neovim-component",
"version": "0.10.1",
"description": "Polymer component for Neovim frontend",
"main": "example/minimal/main.js",
"repository": {
"type": "git",
"url": "https://github.com/rhysd/neovim-component.git"
},
"bugs": {
"url": "https://github.com/rhysd/neovim-component/issues"
},
"scripts": {
"start": "npm run dep && npm run build && npm run example",
"browserify": "browserify -o build/index.js build/src/index.js",
"tsc": "tsc --pretty --project .",
"build": "npm-run-all tsc browserify",
"debug": "cross-env ELECTRON_ENABLE_STACK_DUMPING=true NODE_ENV=debug electron .",
"dep": "npm install && bower install && mkdir build",
"example": "cross-env NODE_ENV=production electron .",
"tslint": "tslint --project .",
"nsp": "nsp check",
"lint": "npm-run-all -p tslint",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'example/*/*.js'",
"watch": "guard --watchdir src test",
"test": "mocha test/unit/ --exit",
"e2e": "mocha build/test/e2e/ --opts test/e2e/mocha.opts --exit"
},
"keywords": [
"neovim",
"polymer",
"WebComponent",
"Electron",
"NW.js",
"editor"
],
"author": "rhysd <[email protected]>",
"license": "MIT",
"dependencies": {
"flux": "^3.1.3",
"loglevel": "^1.6.3",
"promised-neovim-client": "^2.0.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fbemitter": "^2.0.32",
"@types/flux": "^3.1.9",
"@types/loglevel": "^1.5.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/react": "^16.8.19",
"@types/webdriverio": "^4.10.4",
"bower": "^1.8.8",
"browserify": "^16.2.3",
"canvas": "^2.5.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"electron": "~5.0.3",
"jsdom": "^15.1.1",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"nsp": "^3.2.1",
"prettier": "^1.18.2",
"spectron": "^5.0.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}