-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.75 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
{
"name": "babel-plugin-provide",
"version": "0.0.7",
"description": "a babel provide that like webpack-provide-plugin",
"keywords": [
"babel",
"plugin",
"provide"
],
"sideEffects": false,
"main": "esm/index.js",
"module": "esm/index.js",
"engines": {
"node": "> 6.9.1"
},
"files": [
"src",
"esm"
],
"scripts": {
"build": "cross-env NODE_ENV=production babel src -d esm",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gxlmyacc/babel-plugin-provide.git"
},
"author": "gxlmyacc",
"dependencies": {
},
"peerDependencies": {
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/preset-env": "7.4.5",
"babel-eslint": "^10.0.2",
"cross-env": "^7.0.3",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0"
}
}