-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@codistica/babel-preset-default",
"version": "1.0.1",
"publishConfig": {
"access": "public"
},
"description": "Codistica's default Babel preset.",
"keywords": [
"codistica, default, babel, preset, presets, plugin, plugins, transpile, transpilation, polyfill, transform"
],
"author": {
"name": "Codistica",
"email": "[email protected]",
"url": "https://github.com/codistica"
},
"contributors": [
{
"name": "Ernesto Stifano",
"email": "[email protected]",
"url": "https://github.com/ernestostifano"
},
{
"name": "Javier Monguilo",
"email": "[email protected]",
"url": "https://github.com/jmonguilo"
}
],
"homepage": "https://www.codistica.com",
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib-es/index.js",
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"lib-es"
],
"repository": {
"type": "git",
"url": "https://github.com/codistica/babel-preset-default.git"
},
"bugs": {
"url": "https://github.com/codistica/babel-preset-default/issues"
},
"browserslist": [
"since 2015"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"babel:lib": "cross-env NODE_ENV=production cross-env NPM_CONFIG_ES_MODULES=false babel ./src --out-dir ./lib --copy-files",
"babel:lib-es": "cross-env NODE_ENV=production cross-env NPM_CONFIG_ES_MODULES=true babel ./src --out-dir ./lib-es --copy-files",
"build": "yarn run clean && yarn run build:lib && yarn run build:lib-es",
"build:lib": "yarn run babel:lib",
"build:lib-es": "yarn run babel:lib-es",
"clean": "yarn run clean:lib && yarn run clean:lib-es",
"clean:lib": "rimraf ./lib",
"clean:lib-es": "rimraf ./lib-es",
"prepack": "yarn run build",
"uninstall": "yarn run clean && rimraf ./node_modules"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@comandeer/babel-plugin-banner": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.2",
"core-js": "^3.6.5"
}
}