forked from aurelia/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.96 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
{
"name": "aurelia-cli",
"version": "1.0.2",
"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"
},
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run build:ts && npm run build:dts && npm run build:copy-files",
"build:ts": "tsc",
"build:ts:watch": "npm run build:ts -- --watch",
"build:dts": "tsc -d --emitDeclarationOnly --allowJs false",
"build:copy-files": "copyfiles -u 1 -e \"./lib/**/*.{js,ts}\" \"./lib/**/*\" ./dist",
"lint": "gulp lint",
"pretest": "npm run clean && npm run build && npm run lint",
"test": "jasmine-ts",
"coverage": "nyc jasmine-ts",
"test:watch": "nodemon -x 'npm test'",
"prepare": "npm run clean && npm run build"
},
"license": "MIT",
"author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/cli"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-modules-amd": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/register": "^7.5.5",
"ansi-colors": "^4.1.1",
"aurelia-dependency-injection": "^1.4.2",
"aurelia-logging": "^1.5.2",
"aurelia-polyfills": "^1.3.4",
"concat-with-sourcemaps": "^1.1.0",
"convert-source-map": "^1.6.0",
"del": "^5.0.0",
"enquirer": "^2.3.1",
"esprima": "^4.0.1",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"htmlparser2": "^3.10.1",
"lead": "^1.0.0",
"lodash": "^4.17.15",
"map-stream": "0.0.7",
"mkdirp": "^0.5.1",
"node-libs-browser": "^2.2.1",
"npm-which": "^3.0.1",
"open": "^6.4.0",
"preprocess": "^3.1.0",
"pumpify": "^2.0.0",
"querystring-es3": "1.0.0-0",
"readable-stream": "^2.3.6",
"resolve": "^1.11.1",
"semver": "^6.3.0",
"terser": "^4.1.2",
"through2": "^3.0.1",
"typescript": "^1.0.0 || ^2.0.0 || ^3.0.0"
},
"devDependencies": {
"@types/node": "^12.6.8",
"aurelia-tools": "^2.0.0",
"babel-eslint": "^10.0.2",
"copyfiles": "^2.1.1",
"gulp-bump": "^3.1.3",
"gulp-clean": "^0.4.0",
"gulp-conventional-changelog": "^2.0.19",
"gulp-eslint": "^6.0.0",
"jasmine": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"latest-version": "^5.1.0",
"minimatch": "^3.0.4",
"mock-fs": "^4.10.1",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"puppeteer": "^1.19.0",
"rimraf": "^2.6.3",
"tree-kill": "^1.2.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"yargs": "^13.3.0"
}
}