-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "clingon",
"version": "1.0.1",
"description": "Multipurpose generator CLI based on local config and templates",
"main": "./lib/main.js",
"bin": "./lib/main.js",
"author": "Isac Petinate <idpetinate@gmail.com>",
"homepage": "https://clingon.dev",
"repository": {
"url": "https://github.com/ipetinate/clingon",
"type": "public"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"license": "MIT",
"private": false,
"type": "module",
"keywords": [
"cli",
"component",
"generator",
"multipurpose",
"templates",
"vue",
"react",
"typescript",
"devtool",
"devexp"
],
"scripts": {
"build": "rollup --config",
"test": "node --test",
"test:watch": "node --test --watch",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
"dev": "yarn build && clear && node src/main.js",
"dev:npx": "yarn build && npm link && clear && npx clingon "
},
"dependencies": {
"@inquirer/prompts": "^4.3.2",
"commander": "^12.0.0",
"yaml": "^2.4.2"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"auto": "^11.1.6",
"rollup": "^4.14.1",
"rollup-plugin-copy": "^3.5.0"
}
}