|
2 | 2 | "name": "babel-preset-atomic",
|
3 | 3 | "version": "4.3.0",
|
4 | 4 | "description": "babel configuration used in atom-ide-community",
|
| 5 | + "homepage": "https://github.com/atom-ide-community/babel", |
5 | 6 | "repository": "https://github.com/atom-ide-community/babel",
|
6 | 7 | "license": "MIT",
|
7 | 8 | "author": "Amin Yahyaabadi",
|
8 |
| - "main": "index.js", |
| 9 | + "main": "./dist/index.js", |
9 | 10 | "files": [
|
10 |
| - "./index.js" |
| 11 | + "./dist/", |
| 12 | + "./src/" |
11 | 13 | ],
|
12 | 14 | "scripts": {
|
| 15 | + "build": "tsc -p ./src/tsconfig.json", |
13 | 16 | "bump": "ncu -u",
|
14 | 17 | "format": "prettier --write .",
|
15 | 18 | "lint": "eslint . --fix",
|
| 19 | + "prepare": "npm run build", |
16 | 20 | "test.format": "prettier . --check",
|
17 | 21 | "test.lint": "eslint ."
|
18 | 22 | },
|
19 | 23 | "prettier": "prettier-config-atomic",
|
20 | 24 | "dependencies": {
|
21 | 25 | "@babel/cli": "^7",
|
22 | 26 | "@babel/core": "^7",
|
23 |
| - "@babel/plugin-proposal-class-properties": "^7.16.7", |
24 |
| - "@babel/plugin-proposal-decorators": "^7.17.2", |
25 |
| - "@babel/plugin-proposal-do-expressions": "7.16.7", |
26 |
| - "@babel/plugin-proposal-export-default-from": "7.17.12", |
27 |
| - "@babel/plugin-proposal-export-namespace-from": "7.17.12", |
28 |
| - "@babel/plugin-proposal-function-bind": "7.16.7", |
29 |
| - "@babel/plugin-proposal-function-sent": "7.18.2", |
30 |
| - "@babel/plugin-proposal-json-strings": "7.17.12", |
31 |
| - "@babel/plugin-proposal-logical-assignment-operators": "7.17.12", |
32 |
| - "@babel/plugin-proposal-nullish-coalescing-operator": "7.17.12", |
33 |
| - "@babel/plugin-proposal-numeric-separator": "7.16.7", |
34 |
| - "@babel/plugin-proposal-optional-chaining": "7.17.12", |
35 |
| - "@babel/plugin-proposal-pipeline-operator": "7.18.2", |
36 |
| - "@babel/plugin-proposal-private-methods": "7.17.12", |
37 |
| - "@babel/plugin-proposal-private-property-in-object": "^7.16.7", |
38 |
| - "@babel/plugin-proposal-throw-expressions": "7.16.7", |
| 27 | + "@babel/plugin-proposal-class-properties": "^7.18.6", |
| 28 | + "@babel/plugin-proposal-decorators": "^7.18.6", |
| 29 | + "@babel/plugin-proposal-do-expressions": "7.18.6", |
| 30 | + "@babel/plugin-proposal-export-default-from": "7.18.6", |
| 31 | + "@babel/plugin-proposal-export-namespace-from": "7.18.6", |
| 32 | + "@babel/plugin-proposal-function-bind": "7.18.6", |
| 33 | + "@babel/plugin-proposal-function-sent": "7.18.6", |
| 34 | + "@babel/plugin-proposal-json-strings": "7.18.6", |
| 35 | + "@babel/plugin-proposal-logical-assignment-operators": "7.18.6", |
| 36 | + "@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6", |
| 37 | + "@babel/plugin-proposal-numeric-separator": "7.18.6", |
| 38 | + "@babel/plugin-proposal-optional-chaining": "7.18.6", |
| 39 | + "@babel/plugin-proposal-pipeline-operator": "7.18.6", |
| 40 | + "@babel/plugin-proposal-private-methods": "7.18.6", |
| 41 | + "@babel/plugin-proposal-private-property-in-object": "^7.18.6", |
| 42 | + "@babel/plugin-proposal-throw-expressions": "7.18.6", |
39 | 43 | "@babel/plugin-syntax-dynamic-import": "7.8.3",
|
40 | 44 | "@babel/plugin-syntax-import-meta": "7.10.4",
|
41 |
| - "@babel/plugin-transform-modules-commonjs": "^7.16.8", |
42 |
| - "@babel/plugin-transform-reserved-words": "^7.16.7", |
43 |
| - "@babel/preset-env": "7.18.2", |
44 |
| - "@babel/preset-flow": "7.17.12", |
45 |
| - "@babel/preset-react": "7.17.12", |
46 |
| - "@babel/preset-typescript": "^7.16.7", |
| 45 | + "@babel/plugin-transform-modules-commonjs": "^7.18.6", |
| 46 | + "@babel/plugin-transform-reserved-words": "^7.18.6", |
| 47 | + "@babel/preset-env": "7.18.6", |
| 48 | + "@babel/preset-flow": "7.18.6", |
| 49 | + "@babel/preset-react": "7.18.6", |
| 50 | + "@babel/preset-typescript": "^7.18.6", |
47 | 51 | "babel-plugin-add-module-exports": "^1.0.4",
|
48 | 52 | "babel-plugin-codegen": "^4.1.5",
|
49 | 53 | "babel-plugin-preval": "^5.1.0",
|
|
52 | 56 | "devDependencies": {
|
53 | 57 | "@babel/cli": "^7.13.14",
|
54 | 58 | "@babel/core": "^7.13.14",
|
55 |
| - "eslint-config-atomic": "^1.17.0", |
| 59 | + "@types/babel__core": "^7.1.19", |
| 60 | + "@types/babel__preset-env": "7.9.2", |
| 61 | + "eslint-config-atomic": "^1.18.1", |
56 | 62 | "npm-check-updates": "14.1.1",
|
57 |
| - "prettier-config-atomic": "^3.0.6" |
| 63 | + "prettier-config-atomic": "^3.0.10", |
| 64 | + "typescript": "^4.7.4" |
58 | 65 | },
|
59 | 66 | "peerDependencies": {
|
60 | 67 | "@babel/cli": "^7",
|
|
0 commit comments