-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 949 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 949 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": "typescript-library-skeleton",
"version": "0.0.1001",
"description": "Semver-oriented TypeScript library skeleton.",
"main": "dist/main.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": {
"live-mutex": "0.2.0"
},
"devDependencies": {
"@types/node": "^12.7.2",
"typescript": "^3.5.3"
}
}