-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.56 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "xcdl",
"version": "2.0.0-pre",
"description": "The xPack Component Manager command line tool",
"type": "module",
"exports": {
"request": "./index.cjs",
"import": "./index.mjs"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./tests"
},
"bin": {
"xpm": "bin/xpm.js"
},
"scripts": {
"compile-watch": "tsc --build --verbose --watch src",
"compile": "tsc --build --verbose src",
"fix": "ts-standard --fix src tests && standard esm",
"dev-cycle": "npm run fix && npm run compile && npm run test",
"npm-install": "npm install",
"npm-link-helpers": "npm link @xpack/npm-packages-helper @xpack/docusaurus-template-liquid",
"npm-link": "npm link",
"npm-outdated": "npm outdated",
"npm-update": "npm update",
"npm-pack": "npm pack",
"npm-version-patch": "npm version patch",
"npm-version-minor": "npm version minor",
"postversion": "git push origin --all && git push origin --tags",
"git-log": "git log --pretty='%cd * %h %s' --date=short",
"lint": "ts-standard src && standard esm",
"prepare": "npm run compile && npm run lint",
"pretest-coverage": "npm run lint",
"pretest-no-coverage": "npm run lint",
"test-coverage": "tap --show-full-coverage",
"test-no-coverage": "tap --disable-coverage",
"tap": "tap --reporter=tap",
"test": "npm run test-no-coverage",
"test-ci": "npm run test-no-coverage",
"prepublishOnly": "npm run lint && npm run test",
"postpublish": "git push origin --follow-tags",
"clean": "del-cli cjs 'tests/**/cjs' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"show-versions": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)",
"dumpconf": "env | sort | uniq",
"generate-top-commons": "bash node_modules/@xpack/npm-packages-helper/maintenance-scripts/generate-top-commons.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpack/xcdl-cli-ts.git",
"previousUrl": "git+https://github.com/xcdl/xcdl-js.git"
},
"keywords": [
"xpack",
"cdl",
"components",
"manager",
"cli"
],
"author": {
"name": "Liviu Ionescu",
"email": "ilg@livius.net",
"url": "https://github.com/ilg-ul"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/xpack/xcdl-cli-ts/issues"
},
"homepage": "https://xpack.github.io/xcdl-preview/",
"homepagePreview": "https://xpack.github.io/xcdl-cli-ts/",
"dependencies": {
"@ilg/cli-start-options": "^0.8.2"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/tap": "^15.0.12",
"del-cli": "^6.0.0",
"json": "^11.0.0",
"liquidjs": "^10.18.0",
"standard": "^17.1.2",
"tap": "^21.0.1",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typedoc": "^0.26.11",
"typescript": "^4.9.5"
},
"bundleDependencies": [],
"tap": {
"files": [
"tests/tap/*.ts"
],
"reporter": "base"
},
"eslintConfig": {
"rules": {
"max-len": [
"error",
80,
{
"ignoreUrls": true
}
]
}
},
"ts-standard": {
"ignore": [
"/website/",
"**/*.d.ts",
"**/*.js"
]
},
"buildConfig": {
"greeting": "The xPack components manager command line tool",
"isTypeScript": "true"
},
"engines": {
"node": " >=18.0.0"
}
}