|
1 | 1 | { |
2 | 2 | "name": "aurelia-cli", |
3 | | - "version": "3.0.4", |
| 3 | + "version": "3.1.0-beta.1", |
4 | 4 | "description": "The command line tooling for Aurelia.", |
5 | 5 | "keywords": [ |
6 | 6 | "aurelia", |
|
16 | 16 | "aurelia": "bin/aurelia-cli.js", |
17 | 17 | "au": "bin/aurelia-cli.js" |
18 | 18 | }, |
| 19 | + "type": "commonjs", |
19 | 20 | "scripts": { |
20 | | - "lint": "eslint lib spec", |
21 | | - "pretest": "npm run lint", |
| 21 | + "prebuild": "node build/clean-dir.mjs && npm run lint", |
| 22 | + "build": "tsc", |
| 23 | + "postbuild": "node build/copy-files.mjs", |
| 24 | + "lint": "eslint src", |
| 25 | + "pretest": "npm run lint && npm run build", |
22 | 26 | "test": "jasmine", |
23 | 27 | "coverage": "c8 jasmine", |
24 | 28 | "test:watch": "nodemon -x 'npm test'", |
| 29 | + "prepare": "npm run build", |
25 | 30 | "preversion": "npm test", |
26 | 31 | "version": "standard-changelog && git add CHANGELOG.md", |
27 | 32 | "postversion": "git push && git push --tags && npm publish" |
28 | 33 | }, |
29 | 34 | "license": "MIT", |
30 | 35 | "author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)", |
31 | | - "main": "lib/index.js", |
| 36 | + "main": "dist/index.js", |
| 37 | + "typings": "dist/index.d.ts", |
32 | 38 | "files": [ |
33 | 39 | "bin", |
| 40 | + "build", |
| 41 | + "dist", |
34 | 42 | "lib" |
35 | 43 | ], |
36 | 44 | "repository": { |
|
81 | 89 | "string_decoder": "^1.3.0", |
82 | 90 | "terser": "^5.36.0", |
83 | 91 | "timers-browserify": "^2.0.12", |
| 92 | + "tslib": "^2.8.1", |
84 | 93 | "tty-browserify": "0.0.1", |
85 | | - "typescript": "^5.6.3", |
| 94 | + "typescript": "^5.8.3", |
86 | 95 | "url": "^0.11.4", |
87 | 96 | "util": "^0.12.5", |
88 | 97 | "vm-browserify": "^1.1.2" |
89 | 98 | }, |
90 | 99 | "devDependencies": { |
| 100 | + "@eslint/js": "^9.24.0", |
| 101 | + "@stylistic/eslint-plugin": "^4.2.0", |
| 102 | + "@stylistic/eslint-plugin-js": "^4.2.0", |
| 103 | + "@types/convert-source-map": "^2.0.3", |
| 104 | + "@types/gulp": "^4.0.17", |
| 105 | + "@types/jasmine": "^5.1.7", |
| 106 | + "@types/lodash": "^4.17.16", |
| 107 | + "@types/map-stream": "^0.0.3", |
91 | 108 | "@types/node": "^22.8.1", |
| 109 | + "@types/resolve": "^1.20.6", |
| 110 | + "@types/vinyl-fs": "^3.0.5", |
92 | 111 | "c8": "^10.1.2", |
93 | | - "eslint": "^9.13.0", |
| 112 | + "cpx": "^1.5.0", |
| 113 | + "eslint": "^9.24.0", |
94 | 114 | "globals": "^15.11.0", |
95 | 115 | "jasmine": "^5.4.0", |
96 | 116 | "jasmine-spec-reporter": "^7.0.0", |
97 | 117 | "nodemon": "^3.1.7", |
98 | 118 | "standard-changelog": "^6.0.0", |
| 119 | + "typescript-eslint": "^8.29.0", |
99 | 120 | "yargs": "^17.7.2" |
100 | 121 | } |
101 | 122 | } |
0 commit comments