forked from gaearon/babel-plugin-react-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "babel-plugin-react-transform",
"version": "3.0.0",
"description": "Babel plugin to instrument React components with custom transforms",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gaearon/babel-plugin-react-transform.git"
},
"author": "Dan Abramov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/babel-plugin-react-transform/issues"
},
"homepage": "https://github.com/gaearon/babel-plugin-react-transform#readme",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"babel-register": "^6.2.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.11.2",
"mocha": "^2.2.5",
"rimraf": "^2.4.3"
},
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"babel-plugin",
"react-transform",
"instrumentation",
"dx",
"react",
"reactjs",
"components"
],
"dependencies": {
"lodash": "^4.6.1"
}
}