-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
{
"name": "babel-plugin-code-cleaner",
"version": "0.1.3",
"description": "babel code cleaner, removes specified console & debugger debugging code",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "cross-env NODE_ENV=production ava",
"test-w": "cross-env NODE_ENV=production ava -- --watch",
"build": "tsc --emitDeclarationOnly && babel src -d lib -x \".ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/ghyghoo8/babel-plugin-code-cleaner"
},
"keywords": [
"babel",
"babel-plugin",
"clean",
"clear",
"remove",
"console",
"debug"
],
"author": "ghy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghyghoo8/babel-plugin-code-cleaner/issues"
},
"homepage": "https://github.com/ghyghoo8/babel-plugin-code-cleaner",
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/babel__core": "^7.1.20",
"ava": "^5.1.1",
"cross-env": "^7.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"babel": {
"presets": [
"@babel/env",
"@babel/typescript"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}