-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@cybozu/duck",
"description": "Serves and builds an app with Google Closure Compiler/Library/Templates. An alternative to plovr.",
"version": "0.36.0",
"author": "Cybozu, Inc.",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.17"
},
"type": "module",
"main": "dist/compiler.js",
"types": "dist/compiler.d.ts",
"bin": {
"duck": "bin/duck.js"
},
"files": [
"bin",
"dist",
"types/google-closure-deps.d.ts"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "run-p lint:*",
"lint:tsc": "tsc -p tsconfig.test.json",
"lint:eslint": "eslint --ext js,ts src test types examples",
"fix": "npm run lint:eslint -- --fix",
"test": "npm-run-all clean -p lint build -s unit:coverage --aggregate-output -l",
"unit": "vitest run",
"unit:coverage": "vitest run --coverage",
"release": "run-s build lint && standard-version",
"release:dryrun": "standard-version --dry-run"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.4",
"@teppeis/stream-to-observable": "^0.3.1",
"chokidar": "^3.6.0",
"common-tags": "^1.8.2",
"execa": "^8.0.1",
"faastjs": "^8.0.75",
"fast-glob": "^3.3.2",
"fastify": "^4.26.2",
"google-closure-deps": ">=20210406.0.0",
"listr": "^0.14.3",
"merge-options": "^3.0.4",
"p-settle": "^5.1.1",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"rimraf": "^5.0.10",
"rxjs": "^6.6.7",
"semver": "^7.6.3",
"split2": "^4.2.0",
"strip-json-comments": "^5.0.1",
"tempy": "3.0.0",
"workerpool": "^9.2.0",
"xmlbuilder": "^15.1.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"google-closure-compiler": ">=20180910.1.0"
},
"devDependencies": {
"@cybozu/eslint-config": "^22.0.2",
"@types/common-tags": "^1.8.4",
"@types/listr": "^0.14.9",
"@types/node": "~18.19.64",
"@types/rimraf": "^4.0.5",
"@types/semver": "^7.5.8",
"@types/split2": "^4.2.3",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.57.1",
"google-closure-compiler": "^20231112.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"standard-version": "^9.3.2",
"typescript": "^5.4.5",
"vitest": "^1.3.1"
},
"homepage": "https://github.com/cybozu/duck",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cybozu/duck.git"
},
"bugs": {
"url": "https://github.com/cybozu/duck/issues"
},
"keywords": [],
"license": "MIT"
}