-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "remove-data-cy.macro",
"version": "0.1.0",
"main": "./lib/macro.js",
"typings": "./lib/macro.d.ts",
"description": "Remove data-cy tags from JSX Elements",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf lib && mkdir lib && babel ./src --out-dir lib --extensions '.ts,.tsx' && tsc --outDir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivoiv/remove-data-cy.git"
},
"keywords": [
"babel",
"macro",
"data-cy",
"cypress"
],
"files": [
"lib"
],
"author": "Ivo Ivanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivoiv/remove-data-cy/issues"
},
"homepage": "https://github.com/ivoiv/remove-data-cy#readme",
"dependencies": {
"babel-plugin-macros": "^2.8.0"
},
"devDependencies": {
"@types/node": "^13.1.7",
"@babel/cli": "^7.8.3",
"@babel/core": "7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-typescript": "^7.8.3"
}
}