forked from przeprogramowani/typescript-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.51 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
{
"name": "typescript-challenges",
"version": "0.0.1",
"description": "A set of challenges helping you understand basics of TypeScript",
"main": "index.js",
"scripts": {
"test:warm-up": "tsc src/warm-up/warm-up.ts --out src/warm-up/warm-up.test.js && jest src/warm-up",
"test:media": "tsc src/media/media.ts --out src/media/media.test.js && jest src/media",
"test:shortcuts": "tsc src/shortcuts/shortcuts.ts --out src/shortcuts/shortcuts.test.js && jest src/shortcuts",
"test:this-or-that": "tsc src/this-or-that/this-or-that.ts --out src/this-or-that/this-or-that.test.js && jest src/this-or-that",
"test:only-one": "tsc src/only-one/only-one.ts --out src/only-one/only-one.test.js && jest src/only-one",
"test:new-skills": "tsc src/new-skills/new-skills.ts --out src/new-skills/new-skills.test.js && jest src/new-skills",
"test:constraints": "tsc src/constraints/constraints.ts --out src/constraints/constraints.test.js && jest src/constraints"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psmyrdek/typescript-challenges.git"
},
"keywords": [
"typescript",
"knowledge sharing",
"github"
],
"author": "psmyrdek",
"license": "ISC",
"bugs": {
"url": "https://github.com/psmyrdek/typescript-challenges/issues"
},
"homepage": "https://github.com/psmyrdek/typescript-challenges#readme",
"dependencies": {
"typescript": "3.8.3"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "12.12.35",
"jest": "25.3.0"
}
}