UNPKG

1.25 kBJSONView Raw
1{
2 "name": "babel-plugin-react-transform",
3 "version": "2.0.1",
4 "description": "Babel plugin to instrument React components with custom transforms",
5 "main": "lib/index.js",
6 "repository": {
7 "type": "git",
8 "url": "git+https://github.com/gaearon/babel-plugin-react-transform.git"
9 },
10 "author": "Dan Abramov <dan.abramov@me.com>",
11 "license": "MIT",
12 "bugs": {
13 "url": "https://github.com/gaearon/babel-plugin-react-transform/issues"
14 },
15 "homepage": "https://github.com/gaearon/babel-plugin-react-transform#readme",
16 "devDependencies": {
17 "babel-cli": "^6.2.0",
18 "babel-core": "^6.2.1",
19 "babel-eslint": "^4.1.6",
20 "babel-preset-es2015": "^6.1.18",
21 "babel-register": "^6.2.0",
22 "eslint": "^1.10.3",
23 "eslint-plugin-react": "^3.11.2",
24 "mocha": "^2.2.5",
25 "rimraf": "^2.4.3"
26 },
27 "scripts": {
28 "clean": "rimraf lib",
29 "build": "babel src -d lib",
30 "test": "mocha --compilers js:babel-register",
31 "test:watch": "npm run test -- --watch",
32 "prepublish": "npm run clean && npm run build"
33 },
34 "keywords": [
35 "babel-plugin",
36 "react-transform",
37 "instrumentation",
38 "dx",
39 "react",
40 "reactjs",
41 "components"
42 ],
43 "dependencies": {
44 "array-find": "^1.0.0"
45 }
46}