-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "@lume/cli",
"version": "0.14.0",
"description": "A CLI for managing JavaScript/TypeScript packages.",
"homepage": "https://github.com/lume/cli",
"bin": {
"lume": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:lume/cli.git"
},
"bugs": {
"url": "https://github.com/lume/cli/issues"
},
"scripts": {
"release:patch": "npm version patch --no-workspaces --message 'v%s' && npm publish --no-workspaces && git push --follow-tags",
"release:minor": "npm version minor --no-workspaces --message 'v%s' && npm publish --no-workspaces && git push --follow-tags",
"release:major": "npm version major --no-workspaces --message 'v%s' && npm publish --no-workspaces && git push --follow-tags"
},
"dependencies": {
"@babel/cli": "7.25.6",
"@babel/core": "7.25.2",
"@babel/plugin-proposal-decorators": "7.24.7",
"@babel/preset-typescript": "7.24.7",
"@babel/runtime": "7.25.6",
"@types/mocha": "^9.1.0",
"@web/dev-server-import-maps": "^0.1.3",
"@web/test-runner": "^0.17.2",
"@web/test-runner-playwright": "^0.10.2",
"babel-preset-solid": "1.9.0",
"chalk": "4.1.2",
"commander": "8.2.0",
"figlet": "1.5.2",
"jest-browser-globals": "^25.1.0-beta",
"prettier": "3.0.3",
"rimraf": "3.0.0",
"sinon": "^17.0.0",
"typescript": "5.6.x"
},
"keywords": [
"lume",
"solidjs",
"typescript",
"build",
"babel",
"web-development",
"webdev",
"web-test-runner"
]
}