-
-
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.3",
"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": "nyc 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.18.2",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-decorators": "^7.18.2",
"@babel/plugin-transform-modules-amd": "^7.18.0",
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/register": "^7.17.7",
"ansi-colors": "^4.1.3",
"assert": "^2.0.0",
"aurelia-dependency-injection": "^1.5.2",
"aurelia-logging": "^1.5.2",
"aurelia-polyfills": "^1.3.4",
"browserify-zlib": "^0.2.0",
"buffer": "^5.7.0",
"concat-with-sourcemaps": "^1.1.0",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"convert-source-map": "^1.8.0",
"crypto-browserify": "^3.12.0",
"del": "^6.1.1",
"domain-browser": "^4.22.0",
"enquirer": "^2.3.6",
"events": "^3.3.0",
"fs-browser-stub": "^1.0.1",
"gulp": "^4.0.2",
"htmlparser2": "^8.0.1",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"map-stream": "0.0.7",
"meriyah": "^4.2.1",
"minimatch": "^5.1.0",
"npm-which": "^3.0.1",
"os-browserify": "^0.3.0",
"path-browserify": "1.0.1",
"process": "^0.11.10",
"punycode": "^2.1.1",
"querystring-browser-stub": "^1.0.0",
"readable-stream": "^3.6.0",
"resolve": "^1.22.0",
"semver": "^7.3.7",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"terser": "^5.14.0",
"timers-browserify": "^2.0.12",
"tty-browserify": "0.0.1",
"typescript": "^4.7.3",
"url": "^0.11.0",
"util": "^0.12.4",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@types/node": "^17.0.39",
"eslint": "^8.17.0",
"jasmine": "^4.1.0",
"jasmine-spec-reporter": "^7.0.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"standard-changelog": "^2.0.27",
"yargs": "^17.5.1"
}
}