-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "babel-plugin-jsx-remove-data-test-id",
"version": "2.1.3",
"description": "babel plugin to remove data-test-id attributes",
"main": "lib/index.js",
"keywords": [
"babel",
"plugin",
"tdd",
"tests",
"specs",
"qa",
"strip",
"className",
"jsx",
"react",
"unit testing",
"e2e testing",
"test-id"
],
"repository": "git://github.com/coderas/babel-plugin-jsx-remove-data-test-id.git",
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm test && npm run build",
"test": "mocha \"**/*.spec.js\" --compilers js:@babel/register --reporter spec"
},
"author": "Rich Gorman",
"license": "MIT",
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"uglify-js": "^2.7.3"
}
}