-
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.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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": "typescript-algorithms",
"version": "1.0.0",
"description": "use ts to do algorithms",
"main": "index.js",
"type": "module",
"devDependencies": {
"@types/jest": "^26.0.8",
"husky": "^4.3.0",
"jest": "^26.2.2",
"ramda": "^0.27.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest",
"clean": "rimraf ./dist",
"build-ts": "tsc -p ./tsconfig.json",
"build": "npm run clean && npm run build-ts",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrick-prod/typescript-algorithms.git"
},
"keywords": [
"typescript",
"algorithms"
],
"author": "manfish",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrick-prod/typescript-algorithms/issues"
},
"homepage": "https://github.com/patrick-prod/typescript-algorithms#readme",
"dependencies": {
"jquery": "^3.6.0"
}
}