-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1019 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1019 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
38
39
40
41
{
"name": "linqtoo",
"version": "2.0.2",
"description": "Extends TypeScript/JavaScript arrays with powerful LINQ-like query and manipulation methods.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "src/index.d.ts",
"files": [
"dist",
"src/index.d.ts"
],
"scripts": {
"test": "jest",
"build": "tsup",
"build:browser": "tsup src/linqtoo.ts --format iife --minify --out-dir bundle",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romuloar/linqtoo.git"
},
"keywords": [
"linq",
"collection",
"typescript",
"javascript"
],
"author": "Romulo Ribeiro",
"license": "ISC",
"bugs": {
"url": "https://github.com/romuloar/linqtoo/issues"
},
"homepage": "https://github.com/romuloar/linqtoo#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}