-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 917 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 917 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
35
36
37
{
"name": "ts-array-utils",
"version": "1.0.5",
"description": "Miscellaneous array utilities written in TypeScript",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "mocha --require ts-node/register 'test/**/*.spec.ts'",
"prepublishOnly": "tsc -p ./ --outDir dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linusnorton/ts-array-utils.git"
},
"keywords": [
"array",
"utils"
],
"author": "Linus Norton",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/linusnorton/ts-array-utils/issues"
},
"homepage": "https://github.com/linusnorton/ts-array-utils#readme",
"dependencies": {},
"devDependencies": {
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"chai": "6.2.0",
"mocha": "11.7.3",
"ts-node": "10.9.2",
"typescript": "5.9.3"
}
}