-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpackage.json
31 lines (31 loc) · 1.32 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
{
"name": "@przeprogramowani/typescript-challenges",
"version": "1.0.0",
"description": "A set of challenges helping you understand basics of TypeScript",
"scripts": {
"test:warm-up": "tsc src/warm-up/warm-up.ts && vitest src/warm-up",
"test:media": "tsc src/media/media.ts && vitest src/media",
"test:shortcuts": "tsc src/shortcuts/shortcuts.ts && vitest src/shortcuts",
"test:this-or-that": "tsc src/this-or-that/this-or-that.ts && vitest src/this-or-that",
"test:only-one": "tsc src/only-one/only-one.ts && vitest src/only-one",
"test:new-skills": "tsc src/new-skills/new-skills.ts && vitest src/new-skills",
"test:constraints": "tsc src/constraints/constraints.ts && vitest src/constraints",
"test:type-operator": "tsc src/type-operator/type-operator.ts && vitest src/type-operator",
"test:subscriber": "tsc src/subscriber/subscriber.ts && vitest src/subscriber"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psmyrdek/typescript-challenges.git"
},
"author": "przeprogramowani",
"license": "ISC",
"bugs": {
"url": "https://github.com/psmyrdek/typescript-challenges/issues"
},
"homepage": "https://github.com/psmyrdek/typescript-challenges#readme",
"devDependencies": {
"@types/node": "20.14.14",
"typescript": "5.5.4",
"vitest": "2.0.5"
}
}