UNPKG

2.46 kBJSONView Raw
1{
2 "name": "@capacitor/cli",
3 "version": "1.2.0",
4 "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5 "homepage": "https://capacitor.ionicframework.com/",
6 "author": "Ionic Team <hi@ionicframework.com> (https://ionicframework.com) ",
7 "bin": {
8 "capacitor": "./bin/capacitor",
9 "cap": "./bin/capacitor"
10 },
11 "engines": {
12 "node": ">=8.3.0"
13 },
14 "main": "./dist/index.js",
15 "scripts": {
16 "build": "npm run clean && npm run assets && tsc",
17 "clean": "rm -rf ./dist",
18 "deploy": "np",
19 "lint": "tslint --project tsconfig.json",
20 "assets": "node scripts/copy-assets.js",
21 "prepublishOnly": "npm run build",
22 "test": "jest -i",
23 "watch": "npm run assets && tsc -w"
24 },
25 "files": [
26 "assets/",
27 "bin/",
28 "dist/"
29 ],
30 "keywords": [
31 "ionic",
32 "ionic framework",
33 "capacitor",
34 "universal app",
35 "progressive web apps",
36 "cross platform"
37 ],
38 "repository": {
39 "type": "git",
40 "url": "https://github.com/ionic-team/capacitor.git"
41 },
42 "bugs": {
43 "url": "https://github.com/ionic-team/capacitor/issues"
44 },
45 "license": "MIT",
46 "dependencies": {
47 "chalk": "^2.3.0",
48 "commander": "^2.12.2",
49 "compare-versions": "^3.1.0",
50 "fs-extra": "^4.0.3",
51 "inquirer": "6.3.1",
52 "open": "^6.1.0",
53 "ora": "^1.3.0",
54 "plist": "^3.0.1",
55 "semver": "^5.4.1",
56 "which": "^1.3.0",
57 "xml2js": "^0.4.19"
58 },
59 "devDependencies": {
60 "@types/fs-extra": "^4.0.5",
61 "@types/inquirer": "0.0.35",
62 "@types/jest": "^23.3.9",
63 "@types/mock-fs": "^3.6.30",
64 "@types/open": "^6.1.0",
65 "@types/ora": "^1.3.1",
66 "@types/semver": "^5.4.0",
67 "@types/which": "^1.0.28",
68 "@types/xml2js": "^0.4.2",
69 "jest": "^23.6.0",
70 "mock-fs": "^4.4.2",
71 "np": "^2.18.2",
72 "tmp": "0.0.33",
73 "ts-jest": "^23.10.4",
74 "tslint": "^5.8.0",
75 "tslint-ionic-rules": "0.0.11",
76 "typescript": "^3.2.4"
77 },
78 "publishConfig": {
79 "access": "public"
80 },
81 "jest": {
82 "testEnvironment": "node",
83 "moduleFileExtensions": [
84 "ts",
85 "js"
86 ],
87 "transform": {
88 "^.+\\.(ts)$": "ts-jest"
89 },
90 "testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
91 "testPathIgnorePatterns": [
92 "/node_modules/",
93 "/test/util.ts"
94 ],
95 "globals": {
96 "ts-jest": {
97 "tsConfig": "test/tsconfig.json"
98 }
99 }
100 },
101 "gitHead": "106575b647e3f08391a4fdd80b0b4d77491264fa"
102}