-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.9 KB
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
59
60
61
62
63
64
65
{
"name": "@jsweb/utils",
"version": "1.1.4",
"type": "module",
"description": "JS lib with useful stuff for web development",
"scripts": {
"clean": "rm -rf cloudflare components modules services web test",
"dev": "run-s dev:*",
"dev:clean": "npm run clean",
"dev:tsc": "tsc --noEmit",
"dev:watch": "run-p dev:watch:*",
"dev:watch:build": "npm run test:build -- --watch",
"dev:watch:ava": "ava -w",
"test": "run-s test:*",
"test:init": "npm run clean",
"test:tsc": "tsc --noEmit",
"test:build": "esbuild tests/**/* --bundle --sourcemap --platform=node --format=esm --external:ava --external:sinon --outdir=test",
"test:ava": "ava",
"test:end": "npm run clean",
"build": "run-s build:*",
"build:test": "npm t",
"build:dist": "esbuild src/**/* --bundle --minify --format=esm --outdir=. --tsconfig=tsconfig.build.json",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"upd8": "rm -rf node_modules pnpm-lock.yaml && pnpm i",
"preversion": "npm t",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsweb/utils.git"
},
"keywords": [
"JS",
"TS",
"web",
"utilities"
],
"author": "Alex Bruno Cáceres <contato@alexbruno.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsweb/utils/issues"
},
"homepage": "https://github.com/jsweb/utils#readme",
"devDependencies": {
"@cloudflare/workers-types": "latest",
"@jsweb/params": "latest",
"@jsweb/randkey": "latest",
"@types/node": "latest",
"@types/qrcode-svg": "latest",
"@types/sinon": "latest",
"ava": "latest",
"esbuild": "latest",
"lit": "latest",
"npm-run-all": "latest",
"otpauth": "latest",
"qrcode-svg": "latest",
"sinon": "latest",
"typescript": "latest"
},
"ava": {
"files": [
"test/**/*"
]
}
}