UNPKG

2.39 kBJSONView Raw
1{
2 "name": "@ionic/cloud",
3 "version": "0.11.0",
4 "description": "Ionic Cloud Client",
5 "repository": {
6 "type": "git",
7 "url": "git+https://github.com/driftyco/ionic-cloud.git"
8 },
9 "keywords": [
10 "Ionic",
11 "ionic",
12 "cloud",
13 "client"
14 ],
15 "author": "Ionic",
16 "contributors": [
17 "Eric Bobbitt <eric@ionic.io>",
18 "William Pelrine <rudy@ionic.io>",
19 "Dan Imhoff <dan@ionic.io>"
20 ],
21 "license": "Apache-2.0",
22 "bugs": {
23 "url": "https://github.com/driftyco/ionic-cloud/issues"
24 },
25 "homepage": "https://github.com/driftyco/ionic-cloud#readme",
26 "main": "dist/es5/index.js",
27 "typings": "dist/es5/index.d.ts",
28 "module": "dist/esm/index.js",
29 "dependencies": {
30 "ionic-native": "^2.0.3",
31 "superagent": "1.7.2"
32 },
33 "devDependencies": {
34 "babel-plugin-external-helpers": "^6.8.0",
35 "babel-preset-es2015": "^6.14.0",
36 "browserify": "^13.1.0",
37 "concurrently": "^2.2.0",
38 "cpr": "^2.0.0",
39 "dgeni": "^0.4.2",
40 "dgeni-packages": "~0.14.0",
41 "es6-promise": "^3.2.1",
42 "eslint": "^2.10.2",
43 "eslint-config-ionic": "*",
44 "jasmine-core": "^2.4.1",
45 "karma": "^0.13.22",
46 "karma-browserify": "^5.0.5",
47 "karma-jasmine": "^1.0.2",
48 "karma-phantomjs-launcher": "^1.0.0",
49 "phantomjs-prebuilt": "^2.1.7",
50 "replace-in-file": "^2.0.1",
51 "rollup": "^0.36.0",
52 "rollup-plugin-babel": "^2.6.1",
53 "rollup-plugin-commonjs": "^5.0.4",
54 "rollup-plugin-node-resolve": "^2.0.0",
55 "semver": "^5.0.1",
56 "tslint": "^3.10.2",
57 "tslint-ionic-rules": "*",
58 "typescript": "^2.0.2",
59 "typings": "^1.3.3",
60 "uglify-js": "^2.7.3",
61 "watchify": "^3.7.0"
62 },
63 "scripts": {
64 "lint:js": "eslint .",
65 "lint:ts": "tslint 'src/**/*.ts'",
66 "lint": "concurrently 'npm run lint:js' 'npm run lint:ts'",
67 "tsc:es5": "tsc -p tsconfig-es5.json",
68 "tsc:esm": "tsc -p tsconfig-esm.json",
69 "tsc": "concurrently 'npm run tsc:es5' 'npm run tsc:esm'",
70 "rollup": "rollup -c",
71 "version": "node scripts/version.js",
72 "minify": "uglifyjs --compress --mangle --screw-ie8 --source-map dist/bundle/ionic.cloud.min.js.map -o dist/bundle/ionic.cloud.min.js -p relative -- dist/bundle/ionic.cloud.js",
73 "build": "npm run lint && npm run tsc && npm run rollup && npm run version && npm run minify",
74 "test": "karma start --singleRun",
75 "docs": "node scripts/docs.js"
76 }
77}