forked from ionic-team/ionic-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.62 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": "ionic",
"version": "3.19.0",
"description": "A tool for creating and developing Ionic Framework mobile apps.",
"homepage": "https://ionicframework.com",
"author": "Ionic Team <hi@ionic.io> (https://ionicframework.com) ",
"bin": {
"ionic": "./bin/ionic"
},
"engines": {
"node": ">=6.4.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist",
"lint": "tslint --config ../../tslint.js --project tsconfig.json --type-check",
"build": "npm run clean && tsc",
"watch": "tsc -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"bin/",
"dist/"
],
"keywords": [
"ionic",
"ionic framework",
"ionicframework",
"mobile",
"app",
"hybrid",
"cordova",
"native",
"phonegap"
],
"repository": {
"type": "git",
"url": "https://github.com/ionic-team/ionic-cli.git"
},
"bugs": {
"url": "https://github.com/ionic-team/ionic-cli/issues"
},
"license": "MIT",
"dependencies": {
"@ionic/cli-framework": "0.1.2",
"@ionic/cli-utils": "1.19.0",
"chalk": "^2.3.0",
"opn": "^5.1.0",
"semver": "^5.3.0",
"tslib": "^1.8.0",
"update-notifier": "^2.3.0"
},
"devDependencies": {
"@types/opn": "^5.1.0",
"@types/update-notifier": "^1.0.2"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".(ts)": "<rootDir>/../../node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|js)$"
}
}