-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
{
"name": "@jetbrains/babel-preset-jetbrains",
"version": "2.4.0",
"description": "JetBrains preset for Babel",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:JetBrains/babel-preset.git"
},
"keywords": [
"babel",
"babel-preset"
],
"license": "Apache-2.0",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/plugin-transform-strict-mode": "^7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.0",
"babel-plugin-angularjs-annotate": "^0.10.0"
},
"peerDependencies": {
"@babel/core": "^7.14.0",
"core-js": ">=2.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@jetbrains/eslint-config": "^5.3.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"standard-version": "^8.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"lint": "eslint .",
"release:ci": "standard-version && git push --follow-tags origin master && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"engines": {
"node": ">8.0.0"
}
}