-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.06 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": "fast-ghangout",
"version": "0.0.101",
"description": "Semver-oriented TypeScript library skeleton.",
"main": "dist/main.js",
"bin": {
"fast-ghangout": "cli/cli.js"
},
"types": "dist/main.d.ts",
"typings": "dist/main.d.ts",
"scripts": {
"test": "echo 'npm test is currently a no-op'",
"postinstall": "./assets/postinstall.sh",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/typescript-library-skeleton.git"
},
"keywords": [
"typescript",
"library",
"skeleton",
"scaffold"
],
"author": "YOUR NAME HERE",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/ORESoftware/typescript-library-skeleton/issues"
},
"homepage": "https://github.com/ORESoftware/typescript-library-skeleton#readme",
"dependencies": {
"puppeteer": "^3.0.1",
"puppeteer-core": "^3.0.1"
},
"devDependencies": {
"@types/node": "^12.7.2",
"@types/puppeteer": "^2.0.1",
"@types/puppeteer-core": "^2.0.0",
"typescript": "^3.5.3"
}
}