-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 720 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 720 Bytes
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
{
"name": "vue-transformer",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"pbcopy": "tools/pbcopydir.sh package.json tsconfig.json jest.config.js README.md src/"
},
"dependencies": {
"@babel/generator": "^7.24.5",
"@babel/parser": "^7.24.5",
"@babel/traverse": "^7.24.5",
"@babel/types": "^7.24.5"
},
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}