-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@wisersolutions/transpile-js",
"version": "0.2.1",
"description": "Default Babel config and build scripts for other JavaScript packages",
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/transpile-js"
},
"author": "Wiser Solutions, Inc.",
"contributors": [
"Jan Konopásek"
],
"license": "MIT",
"main": "./index.js",
"bin": {
"transpile-js": "./index.js"
},
"files": [
"index.js",
"env.js",
"babel.config.js"
],
"scripts": {
"format": "prettier --write \"**/*.js\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./",
"test": "echo 'This package has no tests.'"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@wisersolutions/eslint-config": "^2.1.4",
"@wisersolutions/eslint-formatter-idea": "^1.0.8",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.5.1"
},
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.17.2",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.16.7",
"@babel/plugin-proposal-json-strings": "^7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-pipeline-operator": "^7.17.6",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime-corejs3": "^7.17.2",
"@hon2a/walk-sync": "^0.0.8",
"babel-plugin-styled-components": "^2.0.6",
"chalk": "^5.0.1",
"core-js": "^3.21.1",
"fs-extra": "^10.0.1",
"lodash.escaperegexp": "^4.1.2",
"minimatch": "^5.0.1",
"minimist": "^1.2.5",
"uninstall": "^0.0.0"
}
}