-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.59 KB
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
69
70
71
72
73
74
75
76
{
"name": "babel-preset-atomic",
"main": "dist/index.js",
"version": "4.0.0",
"files": [
"./index.js"
],
"author": "Amin Yahyaabadi",
"description": "babel configuration used in atom-ide-community",
"keywords": [
"babel",
"babel-preset"
],
"repository": "https://github.com/atom-ide-community/babel",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test.format": "prettier . --check",
"lint": "eslint . --fix",
"test.lint": "eslint .",
"dev": "cross-env NODE_ENV=development parcel watch --target main index.js",
"build": "cross-env NODE_ENV=production parcel build --target main index.js",
"prepare": "npm run build",
"bump": "ncu -u"
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "7.12.13",
"@babel/plugin-proposal-export-default-from": "7.12.13",
"@babel/plugin-proposal-export-namespace-from": "7.12.13",
"@babel/plugin-proposal-function-bind": "7.12.13",
"@babel/plugin-proposal-function-sent": "7.12.13",
"@babel/plugin-proposal-json-strings": "7.13.8",
"@babel/plugin-proposal-logical-assignment-operators": "7.13.8",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
"@babel/plugin-proposal-numeric-separator": "7.12.13",
"@babel/plugin-proposal-optional-chaining": "7.13.12",
"@babel/plugin-proposal-pipeline-operator": "7.12.13",
"@babel/plugin-proposal-private-methods": "7.13.0",
"@babel/plugin-proposal-throw-expressions": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-reserved-words": "^7.12.13",
"@babel/preset-env": "7.13.12",
"@babel/preset-flow": "7.13.13",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "^7.13.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-codegen": "^4.1.4",
"babel-plugin-preval": "^5.0.0",
"babel-plugin-transform-not-strict": "^0.3.1"
},
"peerDependencies": {
"@babel/cli": "^7",
"@babel/core": "^7"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"npm-check-updates": "11.3.0",
"prettier-config-atomic": "^1.0.1",
"cross-env": "^7.0.3",
"npm-check-updates": "11.3.0",
"parcel": "^2.0.0-nightly.632"
},
"targets": {
"main": {
"context": "node",
"includeNodeModules": true,
"outputFormat": "commonjs",
"isLibrary": true
}
}
}