-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "@coon-js/delorean",
"version": "0.3.4",
"type": "module",
"scripts": {
"postinstall": "node lib/postinstall.js",
"delorean": "delorean",
"release": "standard-version",
"release:patch": "standard-version --release-as patch && npm run postversion",
"release:minor": "standard-version --release-as minor && npm run postversion",
"release:major": "standard-version --release-as major && npm run postversion",
"postversion": "git push && git push --tags"
},
"bin": "bin/bin.js",
"repository": {
"type": "git",
"url": "git+https://github.com/coon-js/delorean.git"
},
"keywords": [
"sencha",
"coon.js",
"coon-js",
"l8.js",
"l8js",
"l8",
"javascript"
],
"author": "Thorsten Suckow-Homberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coon-js/delorean/issues"
},
"homepage": "https://github.com/coon-js/delorean#readme",
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@l8js/l8": "^0.7.4",
"chalk": "^5.1.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"fs-extra": "^10.1.0",
"json-beautify": "^1.1.1",
"path": "^0.12.7",
"prompts": "^2.4.2",
"random-int": "^3.0.0",
"shelljs": "^0.8.5",
"strip-json-comments": "^5.0.0",
"url": "^0.11.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"eslint": "^7.28.0",
"standard-version": "^9.3.1"
},
"engines": {
"node": ">=16.14"
}
}