-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "babel-plugin-react-rename",
"version": "0.1.0",
"author": "Izaak Schroeder <[email protected]>",
"description": "Rename react components.",
"repository": "metalabdesign/babel-plugin-react-rename",
"license": "CC0-1.0",
"main": "index.js",
"keywords": [
"babel-plugin",
"babel"
],
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"prepublish": "./node_modules/.bin/babel -s inline -d dist src/",
"spec": "NODE_ENV=test ./node_modules/.bin/_mocha -r adana-dump -r @babel/register --slow 200 -R spec test/spec",
"test": "npm run lint && npm run spec"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.37",
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"@babel/preset-flow": "^7.0.0-beta.37",
"@babel/preset-react": "^7.0.0-beta.37",
"@babel/register": "^7.0.0-beta.37",
"adana-analyze": "^0.1.0",
"adana-cli": "^0.1.0",
"adana-dump": "^0.1.0",
"adana-format-istanbul": "^0.1.2",
"babel-plugin-transform-adana": "^1.0.2",
"chai": "^3.4.0",
"eslint": "^4.6.1",
"eslint-config-metalab": "^8.0.0",
"mocha": "^2.2.5",
"react": "^16.2.0",
"unexpected": "^10.36.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0-beta.37"
},
"dependencies": {
"import-file": "^1.2.2",
"micromatch": "^3.1.5"
}
}