-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "@hh.ru/babel-plugin-react-source",
"version": "0.5.1",
"main": "lib/index.js",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@hh.ru/eslint-config": "^9.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.17.0",
"jest": "^26.6.3",
"mocha": "^8.4.0",
"prettier": "1.19.1",
"strip-comments": "^2.0.1"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/hhru/babel-plugin-react-source"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --require @babel/register",
"prepublish": "yarn clean && yarn build",
"release": "npm publish --access=public"
},
"resolutions": {
"kind-of": "6.0.3"
}
}