-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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-preset-const-enum",
"version": "1.0.0",
"description": "Babel preset for TypeScript `const` enums",
"repository": "https://github.com/dosentmatter/babel-preset-const-enum",
"author": "Kevin Lau",
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"babel-preset",
"typescript",
"const",
"enum",
"terser",
"uglify",
"minify",
"compress"
],
"scripts": {
"build": "babel src --out-dir lib",
"prepublishOnly": "yarn run build",
"test": "jest",
"lint-fix": "eslint --fix 'src/**/*.js' '__tests__/**/*.js'",
"prettier-fix": "prettier --write 'src/**/*.js' '__tests__/**/*.js'"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"babel-plugin-const-enum": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/generator": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.9.0",
"babel-jest": "^26.6.3",
"eslint": "^7.7.0",
"jest": "^26.6.3",
"prettier": "^2.0.4"
},
"files": [
"lib"
]
}