-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "autarky",
"version": "2.0.0",
"description": "Liberating disk space from node_modules",
"author": "Pranshu Chittora <[email protected]>",
"license": "MIT",
"homepage": "https://autarky.js.org",
"repository": {
"type": "git",
"url": "git://github.com/pranshuchittora/autarky.git"
},
"bugs": {
"url": "https://github.com/pranshuchittora/autarky/issues"
},
"bin": {
"autarky": "build/index.js"
},
"main": "build/index",
"types": "build/index.d.ts",
"dependencies": {
"chalk": "5.3.0",
"fs": "^0.0.1-security",
"g-factor": "1.1.0",
"ink": "3.0.8",
"ink-big-text": "1.2.0",
"ink-gradient": "2.0.0",
"ink-multi-select": "2.0.0",
"ink-spinner": "4.0.1",
"ink-table": "3.0.0",
"ink-text-input": "4.0.1",
"log-symbols": "4.0.0",
"moment": "2.24.0",
"react": "17.0.1",
"redux": "4.2.0",
"rimraf": "3.0.0",
"yn": "5.0.0"
},
"scripts": {
"build": "NODE_ENV='production' npx webpack --config webpack.config.js",
"format": "prettier --write 'src/**/*.*'",
"test": "jest",
"prepublish": "yarn run build",
"watch": "NODE_ENV='development' webpack --config webpack.config.js",
"watch:tsc": "tsc -p tsconfig.json --watch",
"watch:test": "jest --watchAll"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/inquirer": "6.5.0",
"@types/jest": "26.0.18",
"@types/moment": "2.13.0",
"@types/node": "14.14.13",
"@types/react": "17.0.0",
"@types/react-redux": "7.1.11",
"@types/redux": "3.6.0",
"@types/rimraf": "2.0.3",
"jest": "29.1.2",
"prettier": "1.19.1",
"ts-jest": "29.0.3",
"ts-loader": "8.0.12",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "4.1.2",
"webpack": "5.10.1",
"webpack-cli": "4.2.0",
"webpack-node-externals": "2.5.2"
},
"files": [
"build",
"!**/__tests__"
],
"keywords": [
"cli",
"typescript",
"nodejs",
"node_modules",
"storage manager",
"disk space"
]
}