-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jtscripts",
"version": "3.0.0",
"private": true,
"description": "JavaScript & TypeScript Algorithms, DataStructures, Snippets and programs",
"scripts": {
"test": "jest --no-cache",
"test:watch": "ava --watch",
"test:cover": "nyc ava",
"send-cover-report": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage && rm -rf ./coverage",
"lint": "eslint . --ext .tsx,.ts,.js,.jsx",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrianLusina/jtscripts.git"
},
"keywords": [
"JavaScript",
"TypeScript",
"Algorithms",
"DataStructures",
"ES6",
"ES5",
"ES2016"
],
"author": "The Lusina",
"license": "ISC",
"bugs": {
"url": "https://github.com/BrianLusina/jtscripts/issues"
},
"homepage": "https://github.com/BrianLusina/jtscripts#readme",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/chai": "^4.2.17",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.196",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.11",
"ava": "^3.13.0",
"babel-jest": "^27.2.4",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"codecov": "^3.8.1",
"core-js": "^3.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"expect": "^29.5.0",
"istanbul": "^0.4.5",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"sinon": "^9.2.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"xo": "^0.34.2"
},
"dependencies": {
"jest": "^29.7.0",
"lodash": "^4.17.21"
}
}