-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1 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
{
"name": "babel-plugin-transform-rename-import",
"version": "2.3.0",
"description": "Replace import sources",
"main": "lib/index",
"scripts": {
"build": "babel src/. -d lib/. --ignore=spec.js",
"test:babel6": "node -r @babel/register src/babel6.spec.js",
"test:babel7": "node -r @babel/register src/babel7.spec.js",
"test": "npm-run-all test:*",
"prepublish": "npm run build"
},
"author": {
"name": "Sigurd Fosseng",
"email": "[email protected]",
"url": "http://laat.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laat/babel-plugin-transform-rename-import.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/traverse": "^7.0.0",
"assert-simple-tap": "^3.0.0",
"babel-core": "^6.26.3",
"npm-run-all": "^4.0.2",
"prettier": "^3.0.0"
},
"files": [
"lib"
]
}