-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "ctci-questions",
"version": "1.0.0",
"description": "Coding Interview Questions",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-numeric-separator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"@types/node": "^13.1.7",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"stop-only": "^3.1.0",
"ts-jest": "^25.3.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"scripts": {
"test": "npx jest",
"test:watch": "npx jest --watch",
"test:ci": "npx jest --collect-coverage",
"lint": "npx tslint -p tsconfig.json",
"lint:fix": "npx tslint -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jake-perez/ctci-questions.git"
},
"author": "Jake Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/jake-perez/ctci-questions/issues"
},
"homepage": "https://github.com/jake-perez/ctci-questions#readme"
}