-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
32
33
34
35
36
37
38
39
40
{
"name": "JavaScript-Algorithms-and-Data-Structures-Masterclass",
"version": "1.0.0",
"description": "Practices from [Udemy course](https://www.udemy.com/course/js-algorithms-and-data-structures-masterclass/)",
"main": "index.js",
"scripts": {
"start": "npx nodemon",
"test": "jest --coverage"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/shhsiao/JavaScript-Algorithms-and-Data-Structures-Masterclass.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"jest": {
"verbose": true,
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": ["ts","js"]
},
"bugs": {
"url": "https://github.com/shhsiao/JavaScript-Algorithms-and-Data-Structures-Masterclass/issues"
},
"homepage": "https://github.com/shhsiao/JavaScript-Algorithms-and-Data-Structures-Masterclass#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.9.2",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"ts-jest": "^25.3.1",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
}
}