-
-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.99 KB
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
{
"name": "@nativescript/doctor",
"version": "2.0.17",
"description": "Library that helps identifying if the environment can be used for development of {N} apps.",
"main": "src/index.js",
"types": "./typings/nativescript-doctor.d.ts",
"files": [
"src/**/*.js",
"resources",
"typings",
"CHANGELOG.md",
"NOTICE.txt"
],
"scripts": {
"clean": "npx rimraf node_modules package-lock.json && npm i && grunt clean",
"build": "grunt",
"build.all": "grunt ts:devall",
"prepack": "grunt pack",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NativeScript/nativescript-doctor.git"
},
"keywords": [
"NativeScript",
"doctor",
"tns"
],
"author": "NativeScript <oss@nativescript.org>",
"contributors": [
{
"name": "Telerik",
"email": "support@telerik.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NativeScript/nativescript-doctor/issues"
},
"homepage": "https://github.com/NativeScript/nativescript-doctor#readme",
"devDependencies": {
"@types/chai": "5.2.2",
"@types/lodash": "4.17.15",
"@types/mocha": "10.0.10",
"@types/semver": "7.5.8",
"@types/shelljs": "0.8.17",
"@types/temp": "0.9.4",
"@types/winreg": "1.2.36",
"@types/yauzl": "2.10.3",
"chai": "5.3.3",
"conventional-changelog-cli": "^5.0.0",
"grunt": "1.6.1",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-shell": "4.0.0",
"grunt-ts": "6.0.0-beta.22",
"grunt-tslint": "5.0.2",
"istanbul": "0.4.5",
"mocha": "11.7.2",
"rimraf": "6.0.1",
"tslint": "6.1.3",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "~5.9.2"
},
"dependencies": {
"lodash": "4.17.21",
"semver": "7.7.2",
"shelljs": "0.10.0",
"winreg": "1.2.5",
"yauzl": "3.2.0"
}
}