-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 928 Bytes
/
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
{
"name": "babel-plugin-stub",
"version": "0.0.2-0",
"description": "a babel plugin help you stub variables",
"scripts": {
"pretest": "npm run build",
"test": "jest",
"prebuild": "npm run clean",
"clean": "rm -rf lib",
"build": "tsc",
"release": "standard-version"
},
"main": "./lib/index.js",
"author": "Caihuanyu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/traverse": "^7.10.5",
"@babel/types": "^7.10.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/babel__traverse": "^7.0.13",
"@types/jest": "^26.0.5",
"babel-plugin-tester": "^9.2.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
}