-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1011 Bytes
/
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
{
"name": "babel-plugin-inject-import",
"version": "1.0.1",
"description": "Babel plugin to inject some custom import statement.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lib": "rm -rf lib/* && npx babel src --out-dir lib",
"pub": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jkiss/babel-plugin-inject-import.git"
},
"keywords": [
"babel",
"plugin",
"import",
"inject",
"react"
],
"author": "Mr.B",
"license": "ISC",
"bugs": {
"url": "https://github.com/jkiss/babel-plugin-inject-import/issues"
},
"homepage": "https://github.com/jkiss/babel-plugin-inject-import#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-spread": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/runtime": "^7.16.3",
"babel-plugin-transform-remove-console": "^6.9.4"
}
}