-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "node-power-user",
"version": "2.1.3",
"description": "Easy tools for every Node.js developer!",
"main": "dist/index.js",
"scripts": {
"test": "npm run prepare && ./node_modules/mocha/bin/mocha test/ --recursive --timeout=10000",
"start": "npm run prepare && ./bin/node-power-user",
"help": "echo 'npm start -- -v'",
"prepare": "node -e \"require('prepare-package')()\"",
"prepare:watch": "node -e \"require('prepare-package/watch')()\""
},
"bin": {
"npu": "bin/node-power-user",
"node-power-user": "bin/node-power-user",
"nodepoweruser": "bin/node-power-user"
},
"files": [
"dist"
],
"preparePackage": {
"input": "./src",
"output": "./dist",
"replace": {},
"type": "copy",
"hooks": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/itw-creative-works/node-power-user.git"
},
"keywords": [
"cli",
"backend manager",
"firebase"
],
"author": "ITW Creative Works",
"license": "ISC",
"bugs": {
"url": "https://github.com/itw-creative-works/node-power-user/issues"
},
"homepage": "https://itwcreativeworks.com",
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"fs-jetpack": "^5.1.0",
"itwcw-package-analytics": "^1.0.8",
"node-powertools": "^3.0.0",
"npm-api": "^1.0.1",
"npm-check-updates": "^22.2.0",
"table": "^6.9.0",
"wonderful-version": "^1.3.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"mocha": "^11.7.5",
"prepare-package": "^2.1.0"
}
}