-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.75 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
{
"name": "tdscore",
"version": "0.2.12",
"description": "Data Structure, algorithms, mathmatic codes and enhancement of ECMAScript written by TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/zsh2401/tdscore"
},
"author": {
"name": "Seymour Zhang",
"email": "[email protected]",
"url": "https://zsh2401.top/"
},
"sideEffects": false,
"license": "MulanPSL-2.0",
"homepage": "http://ds.zsh2401.top",
"main": "lib/index.js",
"unpkg": "dist/tdscore.js",
"typings": "lib/index.d.ts",
"module": "esm/index.js",
"lint": "eslint src/*",
"engines": {
"node": ">= 6.17.1"
},
"scripts": {
"build:dist": "npx ts-node build.ts",
"build:lib": "tsc --project tsconfig.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "concurrently \"npm run build:esm\" \"npm run build:dist\" \"npm run build:lib\"",
"lint": "eslint src/",
"release": "npm run build && npm publish",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"dep": "yarn ts_dependency_graph --start src/index.ts",
"clean": "rimraf dist es esm lib *.log"
},
"dependencies": {
"bignumber.js": "^9.0.2",
"sha256": "^0.2.0"
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.1",
"@types/sha256": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"benchmark": "^2.1.4",
"codecov": "^3.8.3",
"concurrently": "^7.1.0",
"esbuild": "^0.14.31",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts_dependency_graph": "^1.2.0",
"typescript": "^4.6.3"
}
}