-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "moldable",
"version": "0.0.9",
"engines": {
"node": ">=20.0.0"
},
"private": false,
"description": "Moldable is a fast code generator with markdown templates",
"main": "dist/cli.js",
"files": [
"dist"
],
"bin": {
"moldable": "./dist/cli.js"
},
"homepage": "https://github.com/cyberagent/moldable",
"bugs": {
"url": "https://github.com/cyberagent/moldable/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyberagent/moldable.git"
},
"license": "MIT",
"scripts": {
"install:go": "make go-install",
"dev:go": "make dev",
"dev:ts": "tsc -w",
"build": "run-s clear build:go build:ts",
"build:go": "make",
"build:ts": "tsc -p tsconfig.build.json",
"test": "run-p test:go test:ts",
"test:go": "make test",
"test:ts": "jest",
"lint": "run-p lint:go lint:ts",
"lint:go": "make lint",
"lint:ts": "eslint \"**/*.ts\"",
"clear": "rimraf dist && mkdirp dist && rimraf __mocks__/modlable/src",
"format": "run-p format:go format:ts",
"format:go": "make format",
"format:ts": "run-s format:prettier format:eslint",
"format:prettier": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:eslint": "eslint --fix \"**/*.{ts,js}\""
},
"devDependencies": {
"@swc/core": "^1.4.12",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"git-cliff": "^2.2.1",
"mkdirp": "^3.0.1",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2"
}
}