-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "milkee",
"version": "3.3.1",
"description": "A simple CoffeeScript build tool with coffee.config.cjs ☕",
"main": "dist/main.js",
"bin": {
"milkee": "bin/milkee.js"
},
"scripts": {
"test": "prettier --write ./test && vitest",
"test:ci": "vitest --run",
"coverage": "vitest --run --coverage",
"checkversion": "ncu",
"build": "coffee --output dist/ --compile --bare src/",
"format": "cprettier ./src/",
"deprecate:dev": "node ./scripts/deprecate-dev-versions.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otnc/coffeescript-milkee.git"
},
"keywords": [
"coffee",
"coffeescript",
"milkee",
"build",
"builder",
"compile",
"compiler",
"tool",
"cli"
],
"author": "otoneko.",
"license": "MIT",
"bugs": {
"url": "https://github.com/otnc/coffeescript-milkee/issues"
},
"homepage": "https://milkee.org",
"dependencies": {
"@milkee/d": "^0.3.0",
"consola": "^3.4.2",
"is-package-latest": "^2.0.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@types/coffeescript": "^2.5.7",
"@vitest/coverage-v8": "^4.1.0",
"coffee-fmt": "^0.12.0",
"coffeescript": "^2.7.0",
"dotenv": "^17.3.1",
"execa": "^9.6.1",
"milkee-plugin-prettier": "^1.0.0",
"npm-check-updates": "^19.6.6",
"vitest": "^4.0.18"
}
}