-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "ts-utls",
"description": "Utilities for TypeScript library",
"version": "1.5.26",
"main": "dist/lib/src/typescript/index.js",
"types": "dist/lib/src/typescript/index.d.ts",
"scripts": {
"compile": "eslint lib/**/*.ts && tsc",
"fix": "eslint lib/**/*.ts --fix",
"test": "tsc && browserify $(find ./dist/test/typescript -type f -name \"*.js\") -o dist/test/index.js --node && live-server --port=10005 --mount=/:test/typescript",
"fix-test": "eslint test/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyrildever/ts-utls.git"
},
"keywords": [
"typescript",
"utils",
"string",
"array",
"number",
"bits",
"flatten",
"either",
"maybe",
"monad",
"shuffle",
"groupBy",
"hashCode",
"euclidean division",
"sleep",
"xor"
],
"license": "MIT",
"author": "Cyril Dever <cdever@pep-s.com>",
"bugs": {
"url": "https://github.com/cyrildever/ts-utls/issues"
},
"homepage": "https://github.com/cyrildever/ts-utls#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"chai": "^4.5.0",
"config": "^3.3.12",
"eslint": "^9.10.0",
"eslint-plugin-no-loops": "~0.4.0",
"mocha": "^10.7.3",
"typescript": "^5.5.4"
}
}