-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.12 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
{
"name": "@swc/bindings",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:swc-project/swc.git",
"author": "Donny/강동윤 <[email protected]>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.toml": [
"taplo format"
],
"*.rs": [
"rustfmt --"
],
"!(**/tests/**/*)*.js": [
"prettier --write"
],
"!(**/tests/**/*)*.ts": [
"prettier --write"
],
"!(**/tests/**/*)*.jsx": [
"prettier --write"
],
"!(**/tests/**/*)*.tsx": [
"prettier --write"
]
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/swc"
},
"scripts": {
"prepare": "husky install",
"test": "echo 'no test at the moment'"
},
"devDependencies": {
"@taplo/cli": "^0.3.2",
"@types/jest": "^28.1.4",
"@types/node": "^14.14.41",
"cross-env": "^7.0.3",
"cspell": "^5.12.3",
"husky": "^7.0.2",
"jest": "^28.1.2",
"lint-staged": "^12.3.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"typescript": "^4.5.2"
}
}