-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
101 lines (101 loc) · 2.75 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
{
"name": "aurelia-cli",
"version": "3.0.4",
"description": "The command line tooling for Aurelia.",
"keywords": [
"aurelia",
"cli",
"bundle",
"scaffold"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/cli/issues"
},
"bin": {
"aurelia": "bin/aurelia-cli.js",
"au": "bin/aurelia-cli.js"
},
"scripts": {
"lint": "eslint lib spec",
"pretest": "npm run lint",
"test": "jasmine",
"coverage": "c8 jasmine",
"test:watch": "nodemon -x 'npm test'",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/aurelia/cli"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-modules-amd": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/register": "^7.25.9",
"ansi-colors": "^4.1.3",
"assert": "^2.1.0",
"aurelia-dependency-injection": "^1.6.1",
"aurelia-logging": "^1.5.2",
"aurelia-polyfills": "^1.3.4",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"concat-with-sourcemaps": "^1.1.0",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"convert-source-map": "^2.0.0",
"crypto-browserify": "^3.12.1",
"domain-browser": "^5.7.0",
"enquirer": "^2.4.1",
"events": "^3.3.0",
"fs-browser-stub": "^1.0.1",
"gulp": ">=4.0.2",
"htmlparser2": "^9.1.0",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"map-stream": "0.0.7",
"meriyah": "^6.0.2",
"minimatch": "^10.0.1",
"npm-which": "^3.0.1",
"os-browserify": "^0.3.0",
"path-browserify": "1.0.1",
"process": "^0.11.10",
"punycode": "^2.3.1",
"querystring-browser-stub": "^1.0.0",
"readable-stream": "^4.5.2",
"resolve": "^1.22.8",
"semver": "^7.6.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"terser": "^5.36.0",
"timers-browserify": "^2.0.12",
"tty-browserify": "0.0.1",
"typescript": "^5.6.3",
"url": "^0.11.4",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@types/node": "^22.8.1",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"jasmine": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^3.1.7",
"standard-changelog": "^6.0.0",
"yargs": "^17.7.2"
}
}