-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.39 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
57
{
"name": "prelim",
"version": "0.3.2",
"description": "Pre-build Unused Code Eliminator for JavaScript",
"main": "index.js",
"scripts": {
"run": "node prelim-cli.js ",
"format": "prettier --write '*.js' 'src/**/*.js'",
"test": "jest --no-watchman",
"update-tests": "jest --no-watchman --updateSnapshot"
},
"bin": "prelim-cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ariabuckles/prelim.git"
},
"keywords": [
"unused",
"elimination",
"removal",
"dead"
],
"author": "Aria Buckles (https://github.com/ariabuckles)",
"contributors": [
"Aria Buckles (https://github.com/ariabuckles)",
"Kiran Bhattaram (https://github.com/kiran)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ariabuckles/prelim/issues"
},
"homepage": "https://github.com/ariabuckles/prelim#readme",
"files": [
"index.js",
"prelim-cli.js",
"README.md",
"package.json",
"src",
"!**/tests/**"
],
"dependencies": {
"@babel/core": "^7.12.16",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13",
"@codemod/core": "^1.1.0",
"@codemod/parser": "^1.1.0",
"commander": "^7.0.0",
"glob-gitignore": "^1.0.14",
"ignore": "^5.1.8"
},
"devDependencies": {
"@babel/generator": "^7.12.15",
"@babel/parser": "^7.12.16",
"jest": "^26.6.3",
"prettier": "^2.2.1"
}
}