forked from swc-project/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.08 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
{
"name": "@swc/cli",
"version": "0.1.60",
"description": "CLI for the swc project",
"main": "lib/swc/index.js",
"scripts": {
"prepublishOnly": "yarn build && yarn test && yarn types",
"types": "tsc",
"types:watch": "tsc --watch",
"build": "swc src -d lib --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"build:watch": "swc src -d lib --watch --ignore '**/*.test.ts' --ignore '**/__mocks__/**'",
"format:src": "prettier --write src",
"format:examples": "prettier --write examples",
"format": "yarn format:src && yarn format:examples",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "JEST_COVERAGE=true jest --coverage",
"enableGitHooks": "simple-git-hooks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/cli.git"
},
"keywords": [
"swc",
"cli",
"babel",
"es6",
"transpile",
"transpiler",
"compiler",
"javascript"
],
"author": "강동윤 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/swc-project/cli/issues"
},
"homepage": "https://github.com/swc-project/cli#readme",
"engines": {
"node": ">= 12.13"
},
"bin": {
"swc": "./bin/swc.js",
"swcx": "./bin/swcx.js",
"spack": "./bin/spack.js"
},
"dependencies": {
"bin-wrapper": "^4.1.0",
"commander": "^7.1.0",
"fast-glob": "^3.2.5",
"semver": "^7.3.8",
"slash": "3.0.0",
"source-map": "^0.7.3"
},
"devDependencies": {
"@swc/cli": "^0.1.43",
"@swc/core": "^1.2.66",
"@swc/jest": "^0.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^12.19.16",
"@types/semver": "^7.3.13",
"chokidar": "^3.5.1",
"deepmerge": "^4.2.2",
"jest": "^27.0.3",
"nano-staged": "^0.4.5",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^27.0.4",
"typescript": "~4.3.2"
},
"peerDependencies": {
"@swc/core": "^1.2.66",
"chokidar": "^3.5.1"
},
"peerDependenciesMeta": {
"chokidar": {
"optional": true
}
},
"files": [
"bin",
"lib"
]
}