-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
27 lines (27 loc) · 908 Bytes
/
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
{
"name": "beginners-guide-to-typescript",
"version": "1.0.0",
"description": "This is the repository that correlates to my book The Beginner's Guide to TypeScript, you can purchase the kindle book at the link above.",
"main": "dist/index.js",
"dependencies": {},
"devDependencies": {
"@types/node": "^12.11.6",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "node_modules/.bin/tsc",
"start": "npm run lint && npm run build && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shadow1349/beginners-guide-to-typescript.git"
},
"author": "Sam Redmond",
"license": "ISC",
"bugs": {
"url": "https://github.com/shadow1349/beginners-guide-to-typescript/issues"
},
"homepage": "https://github.com/shadow1349/beginners-guide-to-typescript#readme"
}