-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "credits-log",
"version": "1.0.10",
"description": "Rollup plugin to add credits message on debug console in frontend",
"files": [
"LICENSE",
"package.json",
"README.md",
"src",
"bin"
],
"directories": {
"bin": "bin/*",
"src": "src/*"
},
"bin": {
"credits-log": "bin/index.js"
},
"main": "src/index.js",
"module": "src/index.mjs",
"exports": {
".": {
"require": "./src/index.js",
"import": "./src/index.mjs"
},
"./src/*": "./src/*"
},
"scripts": {
"test": "jest --runInBand --passWithNoTests",
"watch": "npm run build -- --watch src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klich3/credits-log.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"credits-log",
"cli",
"credits",
"contributors",
"humans",
"authors",
"console.log",
"console",
"console-log",
"sychev"
],
"author": "Anton Sychev <[email protected]> (https://sychev.xyz)",
"bugs": "https://github.com/klich3/credits-log/issues",
"contributors": [
"https://github.com/klich3/credits-log/graphs/contributors"
],
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"inquirer": "^11.0.2",
"yargs": "^17.7.2"
},
"peerDependencies": {
"rollup": "^4.22.4"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"jest": "^29.7.0",
"rollup": "^4.22.4"
}
}