-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "fetch.macro",
"description": "Allows you to build fetcher function by URL at compile-time.",
"author": "r17x <[email protected]>",
"homepage": "https://github.com/r17x/fetch.macro",
"repository": "https://github.com/r17x/fetch.macro",
"version": "1.9.3",
"keywords": [
"babel-plugin-macros",
"babel-plugins",
"swc-plugins",
"fetch"
],
"main": "src/fetch.macro.js",
"exports": {
".": "./src/fetch.macro.js",
"./swc": "./swc/target/wasm32-wasi/release/swc_plugin_fetch_macro.wasm"
},
"files": [
"src/fetch.macro.js",
"swc/target/wasm32-wasi/release/swc_plugin_fetch_macro.wasm"
],
"license": "MIT",
"scripts": {
"lint": "eslint",
"format": "prettier --write --ignore-unknown",
"build": "cargo build --manifest-path ./swc/Cargo.toml --release --target=wasm32-wasi",
"swc:test": "cargo test --manifest-path ./swc/Cargo.toml",
"test": "jest && yarn swc:test"
},
"prettier": "@kodingdotninja/style-guide/prettier",
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"tests/test-cases.js": [
".husky/generate-api-md",
"git add README.md"
],
"*.js": [
"eslint --fix",
"cross-env NODE_ENV=test jest --bail --findRelatedTests --passWithNoTests"
]
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"tests/create-tests.js",
"tests/test-cases.js"
]
},
"peerDependencies": {
"babel-plugin-macros": "^2"
},
"devDependencies": {
"@babel/core": "^7",
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/prompt": "16.2.1",
"@kodingdotninja/style-guide": "^4",
"@semantic-release/changelog": "semantic-release/changelog",
"@semantic-release/git": "10.0.1",
"@semrel-extra/npm": "1.2.0",
"babel-plugin-macros": "^3",
"babel-plugin-tester": "^10",
"commitlint-config-squash-pr": "1.1.0",
"cross-env": "^7",
"eslint": "^8",
"husky": "^8",
"jest": "^29",
"lint-staged": "^13",
"mdast-util-from-markdown": "^1",
"mdast-util-heading-range": "^3",
"prettier": "^3",
"remark": "^14",
"remark-gfm": "^3",
"semantic-release": "19.0.2",
"turbo": "^1.6.3",
"unist-builder": "^3"
},
"packageManager": "[email protected]"
}