-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 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
{
"name": "babel-plugin-transform-ternary-to-if-else",
"version": "2.0.1",
"description": "Transform ternary expressions into if-else statements.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint . --ext js,cjs",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "npm run test:only -- --coverage",
"test:only": "mocha",
"precommit": "npm run test",
"prepublish": "npm run test",
"build": "cd docs && npm run build"
},
"files": [
"lib"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenGG/babel-plugin-transform-ternary-to-if-else.git"
},
"bugs": {
"url": "https://github.com/OpenGG/babel-plugin-ternary-to-if-else/issues"
},
"homepage": "https://github.com/OpenGG/babel-plugin-ternary-to-if-else#readme",
"keywords": [
"babel-plugin"
],
"author": "OpenGG<[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@babel/template": "^7.16.7"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"eslint-config-opengg": "^4.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-no-async-without-await": "^1.2.0",
"husky": "^7.0.4",
"mocha": "^9.2.0"
}
}