-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.32 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
{
"name": "babel-plugin-treasure",
"version": "0.9.0",
"repository": "https://github.com/DTStack/babel-plugin-treasure",
"description": "a babel plugin for the special demand",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "father build --cjs",
"dev": "father doc dev",
"lint": "eslint --ext .js src",
"test": "father test --coverage"
},
"keywords": [
"babel",
"babel-plugin",
"dtstack"
],
"husky": {
"hooks": {
"lint-staged": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
},
"author": "chenfeng",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@babel/types": "^7.11.5",
"babel-preset-umi": "^1.8.4",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"father": "^2.29.10",
"husky": "^4.3.0",
"np": "^6.5.0"
},
"dependencies": {
"@babel/helper-module-imports": "^7.10.4",
"@babel/runtime": "^7.11.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}