-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 809 Bytes
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
{
"name": "oktokit-typescript",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "rimraf lib",
"ts-node": "npx ts-node src/index.ts",
"watch": "npx tsc -w"
},
"author": "",
"license": "ISC",
"files": [
"lib/**/*.{d.ts,js,js.map,json}"
],
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.1",
"@types/nodegit": "^0.22.3",
"npx": "^10.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@octokit/rest": "^15.10.0",
"lodash": "^4.17.10",
"node-fs-extra": "^0.8.2",
"nodegit": "^0.22.2",
"yargs": "^12.0.1"
}
}