-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.11 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
{
"name": "@oresoftware/ores",
"version": "0.0.1002",
"description": "Semver-oriented TypeScript library skeleton.",
"main": "dist/index.js",
"bin": {
"ores": "cli/ores.sh",
"ores_get_project_root": "cli/ores-get-project-root.sh"
},
"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": {
"async": "^2.6.1",
"chalk": "^2.4.1",
"json-stdio": "0.0.1017",
"shortid": "^2.2.8"
},
"devDependencies": {
"@types/async": "^2.0.49",
"@types/core-js": "^0.9.46",
"@types/node": "^9.6.2",
"@types/shortid": "0.0.29"
}
}