-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "babel-plugin-remove-template-literals-whitespace",
"version": "1.0.4",
"description": "Babel plugin for whitespace removal from template literals.",
"main": "src/index.js",
"files": [
"index.js",
"src/*.js"
],
"scripts": {
"lint": "npx eslint src/index.js",
"lint:fix": "npx eslint src/index.js --fix",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverfindl/babel-plugin-remove-template-literals-whitespace.git"
},
"keywords": [
"babel",
"babel-plugin",
"template-literals",
"remove-whitespace",
"remove-template-literals-whitespace",
"babel-plugin-remove-template-literals-whitespace"
],
"author": "Oliver Findl",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverfindl/babel-plugin-remove-template-literals-whitespace/issues"
},
"homepage": "https://github.com/oliverfindl/babel-plugin-remove-template-literals-whitespace#readme",
"dependencies": {
"@babel/helper-plugin-utils": "^7.13.0"
},
"devDependencies": {
"babel-plugin-tester": "^10.0.0",
"eslint": "^7.26.0",
"jest": "^26.6.3"
}
}