-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.06 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.06 KB
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
{
"name": "challenge-my-ts-knowledge",
"version": "1.0.0",
"description": "A collection of interactive challenges that brings your TypeScript knowledge to the next level!",
"main": "index.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"scripts": {
"test": "jest",
"get-all-branches": "git branch -r | grep -v '\\->' | while read remote; do git branch --track \"${remote#origin/}\" \"$remote\"; done ; git fetch --all; git pull --all",
"checkout-next": "git checkout 01-null-vs-undefined && npm ci",
"intro": "",
"start": "run-s get-all-branches checkout-next intro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorousht/challenge-my-ts-knowledge.git"
},
"author": "Soroush Torkzadeh",
"license": "ISC",
"bugs": {
"url": "https://github.com/sorousht/challenge-my-ts-knowledge/issues"
},
"homepage": "https://github.com/sorousht/challenge-my-ts-knowledge#readme"
}