-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 822 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 822 Bytes
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
{
"name": "algorithm",
"version": "1.0.0",
"description": "Algorithm written by TypeScript.",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "jest --runInBand --verbose",
"prepare": "husky install"
},
"keywords": [
"algorithm",
"TypeScript"
],
"author": "haisheng-lin",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
"@types/jest": "^28.1.7",
"husky": "^8.0.0",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^2.78.1",
"ts-jest": "^28.0.8",
"tslib": "^2.4.0",
"ttypescript": "^1.5.13",
"typescript": "^4.8.2",
"typescript-transform-paths": "^3.3.1"
}
}