-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.95 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": "@whatever-company/babel-preset-elium",
"version": "2.1.0",
"description": "Babel preset used by Elium",
"repository": {
"type": "git",
"url": "git@github.com:whatever-company/babel-preset-elium.git"
},
"license": "MIT",
"files": [
"index.js",
"create.js",
"dev.js",
"prod.js",
"test.js"
],
"scripts": {
"format": "prettier --write '**/*.{js,jsx,md,json,css}'",
"release": "standard-version"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.12",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-function-sent": "7.12.1",
"@babel/plugin-proposal-json-strings": "7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1",
"@babel/plugin-proposal-numeric-separator": "7.12.7",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-proposal-throw-expressions": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-classes": "7.12.1",
"@babel/plugin-transform-destructuring": "7.12.1",
"@babel/plugin-transform-for-of": "7.12.1",
"@babel/plugin-transform-react-display-name": "7.12.1",
"@babel/plugin-transform-regenerator": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"babel-plugin-require-context-hook": "1.0.0",
"babel-plugin-transform-dynamic-import": "2.1.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24"
},
"devDependencies": {
"prettier": "2.2.1",
"prettier-cli": "0.1.0",
"standard-version": "9.1.0"
},
"peerDependencies": {
"core-js": "^3.0.0"
}
}