-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 972 Bytes
/
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
{
"name": "algorithmic.js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "tsc --build",
"test": "jest ./tests",
"test:coverage": "jest --coverage",
"formatter:check": "prettier --config ./.prettierrc --check './lib/**/*.ts'",
"formatter:write": "prettier --config ./.prettierrc --write './lib/**/*.ts'",
"linter:check": "tslint --project .",
"snyk:test": "npx snyk test",
"publish": "npm publish"
},
"keywords": [
"Algorithm",
"Data structure"
],
"author": "Arkady-Skvortsov",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"inversify": "^6.0.1",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"ts-jest": "^28.0.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.4"
}
}