-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "oni-api",
"version": "0.0.50",
"description": "Oni's API layer",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:src": "rimraf lib && tsc",
"build:docs": "typedoc --out docs src/index.ts --mode file --readme INDEX.md",
"build": "npm run build:src && npm run build:docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/onivim/oni-api.git"
},
"author": "Bryan Phelps",
"license": "MIT",
"bugs": {
"url": "https://github.com/onivim/oni-api/issues"
},
"homepage": "https://github.com/onivim/oni-api#readme",
"peerDependencies": {
"oni-types": "^0.0.4",
"vscode-languageserver-types": "^3.5.0",
"typescript": "^2.5.3",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@types/node": "^8.0.53",
"@types/react": "^16.0.23",
"oni-types": "0.0.8",
"rimraf": "2.6.2",
"rxjs": "^5.5.0",
"typedoc": "^0.10.0",
"typescript": "2.5.3",
"vscode-languageserver-types": "^3.5.0"
}
}