-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
49
50
51
52
{
"name": "babel-plugin-react-component-trace-data-attr",
"version": "0.2.1",
"license": "MIT",
"description": "Adds data- attribute to html elements showing the trace of React components names that led to this element creation.",
"repository": {
"type": "git",
"url": "git+https://github.com/x-kom/babel-plugin-react-component-trace-data-attr.git"
},
"author": "x-kom.pl",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"test:watch": "npm test -- --watch",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.isstring": "^4.0.1",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-helper-plugin-test-runner": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mocha": "^5.2.0"
},
"keywords": [
"babel",
"plugin",
"react",
"component",
"data",
"dataattribute",
"testing"
],
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"files": [
"lib",
"README.md"
]
}