|
1 | 1 | { |
2 | | - "name": "nativescript", |
3 | | - "preferGlobal": true, |
4 | | - "version": "8.5.5-vision.0", |
5 | | - "author": "NativeScript <support@nativescript.org>", |
6 | | - "description": "Command-line interface for building NativeScript projects", |
7 | | - "bin": { |
8 | | - "tns": "./bin/tns", |
9 | | - "nativescript": "./bin/tns", |
10 | | - "nsc": "./bin/tns", |
11 | | - "ns": "./bin/tns" |
12 | | - }, |
13 | | - "main": "./lib/nativescript-cli-lib.js", |
14 | | - "files": [ |
15 | | - "bin/*", |
16 | | - "config", |
17 | | - "docs", |
18 | | - "!docs/html", |
19 | | - "lib", |
20 | | - "!lib/**/*.ts", |
21 | | - "lib/**/*.d.ts", |
22 | | - "!lib/**/*.js.map", |
23 | | - "!lib/common/test", |
24 | | - "!lib/common/docs/fonts", |
25 | | - "resources", |
26 | | - "setup", |
27 | | - "vendor", |
28 | | - "postinstall.js", |
29 | | - "preuninstall.js" |
30 | | - ], |
31 | | - "scripts": { |
32 | | - "clean": "npx rimraf node_modules package-lock.json && npm run setup", |
33 | | - "build": "grunt", |
34 | | - "build.all": "grunt test", |
35 | | - "dev": "tsc --watch", |
36 | | - "setup": "npm i --ignore-scripts && npx husky install", |
37 | | - "test": "mocha --config=test/.mocharc.yml", |
38 | | - "postinstall": "node postinstall.js", |
39 | | - "preuninstall": "node preuninstall.js", |
40 | | - "prepack": "grunt prepare", |
41 | | - "postpack": "grunt set_dev_ga_id", |
42 | | - "mocha": "mocha", |
43 | | - "tsc": "tsc", |
44 | | - "test-watch": "node ./dev/tsc-to-mocha-watch.js", |
45 | | - "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
46 | | - "prettier": "prettier --write ./lib/**/*{.ts,.d.ts} ./test/**/*{.ts,.d.ts}" |
47 | | - }, |
48 | | - "repository": { |
49 | | - "type": "git", |
50 | | - "url": "https://github.com/NativeScript/nativescript-cli.git" |
51 | | - }, |
52 | | - "keywords": [ |
53 | | - "nativescript", |
54 | | - "telerik", |
55 | | - "mobile" |
56 | | - ], |
57 | | - "dependencies": { |
| 2 | + "name": "nativescript", |
| 3 | + "preferGlobal": true, |
| 4 | + "version": "8.5.5-vision.0", |
| 5 | + "author": "NativeScript <support@nativescript.org>", |
| 6 | + "description": "Command-line interface for building NativeScript projects", |
| 7 | + "bin": { |
| 8 | + "tns": "./bin/tns", |
| 9 | + "nativescript": "./bin/tns", |
| 10 | + "nsc": "./bin/tns", |
| 11 | + "ns": "./bin/tns" |
| 12 | + }, |
| 13 | + "main": "./lib/nativescript-cli-lib.js", |
| 14 | + "files": [ |
| 15 | + "bin/*", |
| 16 | + "config", |
| 17 | + "docs", |
| 18 | + "!docs/html", |
| 19 | + "lib", |
| 20 | + "!lib/**/*.ts", |
| 21 | + "lib/**/*.d.ts", |
| 22 | + "!lib/**/*.js.map", |
| 23 | + "!lib/common/test", |
| 24 | + "!lib/common/docs/fonts", |
| 25 | + "resources", |
| 26 | + "setup", |
| 27 | + "vendor", |
| 28 | + "postinstall.js", |
| 29 | + "preuninstall.js" |
| 30 | + ], |
| 31 | + "scripts": { |
| 32 | + "clean": "npx rimraf node_modules package-lock.json && npm run setup", |
| 33 | + "build": "grunt", |
| 34 | + "build.all": "grunt test", |
| 35 | + "dev": "tsc --watch", |
| 36 | + "setup": "npm i --ignore-scripts && npx husky install", |
| 37 | + "test": "mocha --config=test/.mocharc.yml", |
| 38 | + "postinstall": "node postinstall.js", |
| 39 | + "preuninstall": "node preuninstall.js", |
| 40 | + "prepack": "grunt prepare", |
| 41 | + "postpack": "grunt set_dev_ga_id", |
| 42 | + "mocha": "mocha", |
| 43 | + "tsc": "tsc", |
| 44 | + "test-watch": "node ./dev/tsc-to-mocha-watch.js", |
| 45 | + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
| 46 | + "prettier": "prettier --write ./lib/**/*{.ts,.d.ts} ./test/**/*{.ts,.d.ts}" |
| 47 | + }, |
| 48 | + "repository": { |
| 49 | + "type": "git", |
| 50 | + "url": "https://github.com/NativeScript/nativescript-cli.git" |
| 51 | + }, |
| 52 | + "keywords": [ |
| 53 | + "nativescript", |
| 54 | + "telerik", |
| 55 | + "mobile" |
| 56 | + ], |
| 57 | + "dependencies": { |
58 | 58 | "@nativescript/doctor": "2.0.11", |
59 | 59 | "@nativescript/schematics-executor": "0.0.2", |
60 | 60 | "@npmcli/move-file": "^2.0.0", |
|
169 | 169 | "sinon": "15.0.3", |
170 | 170 | "source-map-support": "0.5.21" |
171 | 171 | }, |
172 | | - "license": "Apache-2.0", |
173 | | - "engines": { |
174 | | - "node": ">=10.0.0" |
175 | | - }, |
176 | | - "lint-staged": { |
177 | | - "*.ts": "prettier --write" |
178 | | - }, |
179 | | - "bundleDependencies_comment1": "These dependencies are bundled in the CLI and are not installed from npm to avoid deprecation warnings.", |
180 | | - "bundleDependencies_comment2": "Eventually we'll remove them as we replaced their functionality.", |
181 | | - "bundleDependencies_comment3": "note: @npmcli/move-file is a transient dep of pacote - we dont use it directly.", |
182 | | - "bundleDependencies": [ |
183 | | - "@npmcli/move-file", |
184 | | - "stringify-package" |
185 | | - ] |
| 172 | + "license": "Apache-2.0", |
| 173 | + "engines": { |
| 174 | + "node": ">=10.0.0" |
| 175 | + }, |
| 176 | + "lint-staged": { |
| 177 | + "*.ts": "prettier --write" |
| 178 | + }, |
| 179 | + "bundleDependencies_comment1": "These dependencies are bundled in the CLI and are not installed from npm to avoid deprecation warnings.", |
| 180 | + "bundleDependencies_comment2": "Eventually we'll remove them as we replaced their functionality.", |
| 181 | + "bundleDependencies_comment3": "note: @npmcli/move-file is a transient dep of pacote - we dont use it directly.", |
| 182 | + "bundleDependencies": [ |
| 183 | + "@npmcli/move-file", |
| 184 | + "stringify-package" |
| 185 | + ] |
186 | 186 | } |
0 commit comments