generated from berhalak/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "fromit",
"private": false,
"version": "2.2.11",
"description": "Typescript linq",
"main": "dist/index.js",
"module": "dist/fromit.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc && npm run build:esm && npm run build:js",
"build:esm": "esbuild src/index.ts --outfile=dist/fromit.mjs --format=esm --bundle --sourcemap=external --minify",
"build:js": "esbuild src/browser.ts --outfile=dist/fromit.min.js --bundle --sourcemap=external --minify",
"compile": "tsc --noEmit",
"watch": "jest --watch",
"deploy": "npm run build && npm publish",
"update": "ncu -x jest,@types/node -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berhalak/fromit.git"
},
"author": "berhalak",
"keywords": [
"linq",
"iterable"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/berhalak/fromit/issues"
},
"homepage": "https://github.com/berhalak/fromit#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"esbuild": "^0.15.7",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.2"
}
}