-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 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
{
"name": "babel-preset-atomic",
"main": "index.js",
"version": "1.0.4",
"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": {
"clean": "shx rm -rf dist",
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_ENV=production rollup -c -w",
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_ENV=production rollup -c ",
"prepare": "npm run build",
"bump": "ncu -u"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "7.10.4",
"@babel/plugin-proposal-export-default-from": "7.10.4",
"@babel/plugin-proposal-export-namespace-from": "7.10.4",
"@babel/plugin-proposal-function-bind": "7.10.5",
"@babel/plugin-proposal-function-sent": "7.10.4",
"@babel/plugin-proposal-json-strings": "7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.4",
"@babel/plugin-proposal-numeric-separator": "7.10.4",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-proposal-pipeline-operator": "7.10.5",
"@babel/plugin-proposal-throw-expressions": "7.10.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.11.0",
"@babel/preset-flow": "7.10.4",
"@babel/preset-react": "7.10.4",
"babel-plugin-add-module-exports": "^1.0.2"
},
"peerDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1",
"npm-check-updates": "7.0.2",
"rollup": "^2.23.0",
"rollup-plugin-atomic": "^1.2.0",
"shx": "^0.3.2",
"cross-env": "^7.0.2"
}
}