-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.1 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
{
"name": "dygrep",
"version": "0.0.1001",
"description": "Semver-oriented TypeScript library skeleton.",
"main": "dist/index.js",
"bin": {
"dygrep": "cli/server-cli.js",
"dygrep-client": "cli/client-cli.js"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"test": "suman test",
"postinstall": "./assets/postinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/typescript-library-skeleton.git"
},
"keywords": [
"typescript",
"library",
"skeleton",
"scaffold"
],
"author": "TODO Yo.Mama",
"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": {
"@oresoftware/json-stream-parser": "latest",
"@oresoftware/safe-stringify": "latest",
"async": "^2.6.1",
"chalk": "^2.4.1"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/core-js": "^0.9.46",
"@types/node": "^9.6.2"
}
}