-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "@zong/js.macro",
"version": "1.0.2",
"description": "Macro in JavaScript powered by Babel.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch src",
"build": "tsup",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zongzi531/js.macro.git"
},
"keywords": [
"js",
"javascript",
"macro"
],
"author": "zongzi531",
"license": "ISC",
"bugs": {
"url": "https://github.com/zongzi531/js.macro/issues"
},
"homepage": "https://github.com/zongzi531/js.macro#readme",
"dependencies": {
"@babel/types": "^7.18.2",
"babel-plugin-macros": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@types/babel-plugin-macros": "^2.8.5",
"@types/babel-plugin-tester": "^9.0.5",
"@types/babel-types": "^7.0.11",
"@types/babel__core": "^7.1.19",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"babel-plugin-tester": "^10.1.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"tsup": "^5.12.8",
"typescript": "^4.7.2"
}
}