-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 907 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 907 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
37
38
39
{
"name": "practice-typescript",
"version": "1.0.0",
"description": "A code repo on practicing typescript",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"mocha": "^10.4.0",
"prettier": "^3.2.5"
},
"scripts": {
"build": "tsc",
"test": "tsc && mocha 'dist/test/*.js'",
"debug-test": "mocha 'dist/test/*.js' --debug-brk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deanagan/practice-typescript.git"
},
"keywords": [
"typescript",
"mocha",
"chai"
],
"author": "Dean Agan",
"license": "ISC",
"bugs": {
"url": "https://github.com/deanagan/practice-typescript/issues"
},
"homepage": "https://github.com/deanagan/practice-typescript#readme"
}