-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
47
48
{
"name": "babel-plugin-transform-react-jsx-img-import",
"description": "Generate imports for jsx img elements. A handy transform for use in webpack workflows.",
"version": "0.1.3",
"main": "lib/index.js",
"author": "gvelo",
"repository": "gvelo/babel-plugin-transform-react-jsx-img-import",
"license": "MIT",
"keywords": [
"babel",
"babel-plugin",
"webpack",
"image",
"jsx",
"react"
],
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"lint": "eslint src/",
"pretest": "npm run lint",
"test": "node_modules/.bin/babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "^6.9.1",
"babel-helper-plugin-test-runner": "^6.8.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-react-display-name": "^2.0.0",
"babel-plugin-syntax-jsx": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015-node4": "*",
"babel-register": "^6.9.0",
"chai": "*",
"coveralls": "*",
"eslint": "^2.12.0",
"isparta": "*",
"mocha": "*",
"sinon": "*"
},
"dependencies": {
"babel-types": "^6.10.0",
"lodash": "^4.13.1"
}
}