-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
39
40
41
42
43
44
45
46
{
"name": "ctci-typescript",
"main": "index.js",
"bugs": {
"url": "https://github.com/Braden1996/Cracking-the-Coding-Interview-TypeScript/issues"
},
"author": "Braden Marshall <[email protected]> (https://github.com/Braden1996)",
"version": "1.0.0",
"scripts": {
"test:jest": "jest --maxWorkers=2",
"test": "run-s test:**",
"pretest:typecheck": "tsc -p .",
"pretest:lint": "tslint -t stylish --project .",
"pretest": "run-s pretest:**"
},
"license": "MIT",
"keywords": [
"typescript",
"interview",
"tested",
"algorithms"
],
"homepage": "https://Braden1996.github.io/Cracking-the-Coding-Interview-TypeScript",
"repository": {
"url": "git+https://github.com/Braden1996/Cracking-the-Coding-Interview-TypeScript.git",
"type": "git"
},
"description": "",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/jest-each": "^0.3.3",
"jest": "^23.6.0",
"jest-each": "^24.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.4"
},
"dependencies": {
"@types/node": "^10.12.18",
"tsconfig-paths-jest": "0.0.1"
}
}