forked from ionic-team/legacy-ionic-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.33 KB
/
package.json
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
75
76
77
{
"name": "@ionic/cloud",
"version": "0.13.0",
"description": "Ionic Cloud Client",
"repository": {
"type": "git",
"url": "git+https://github.com/driftyco/ionic-cloud.git"
},
"keywords": [
"Ionic",
"ionic",
"cloud",
"client"
],
"author": "Ionic",
"contributors": [
"Eric Bobbitt <[email protected]>",
"William Pelrine <[email protected]>",
"Dan Imhoff <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/driftyco/ionic-cloud/issues"
},
"homepage": "https://github.com/driftyco/ionic-cloud#readme",
"main": "dist/es5/index.js",
"typings": "dist/es5/index.d.ts",
"module": "dist/esm/index.js",
"dependencies": {
"ionic-native": "^2.0.3",
"superagent": "1.7.2"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"browserify": "^13.1.0",
"concurrently": "^2.2.0",
"cpr": "^2.0.0",
"dgeni": "^0.4.2",
"dgeni-packages": "~0.14.0",
"es6-promise": "^3.2.1",
"eslint": "^2.10.2",
"eslint-config-ionic": "*",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"replace-in-file": "^2.0.1",
"rollup": "^0.36.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.4",
"rollup-plugin-node-resolve": "^2.0.0",
"semver": "^5.0.1",
"tslint": "^3.10.2",
"tslint-ionic-rules": "*",
"typescript": "^2.0.2",
"typings": "^1.3.3",
"uglify-js": "^2.7.3",
"watchify": "^3.7.0"
},
"scripts": {
"lint:js": "eslint .",
"lint:ts": "tslint 'src/**/*.ts'",
"lint": "concurrently 'npm run lint:js' 'npm run lint:ts'",
"tsc:es5": "tsc -p tsconfig-es5.json",
"tsc:esm": "tsc -p tsconfig-esm.json",
"tsc": "concurrently 'npm run tsc:es5' 'npm run tsc:esm'",
"rollup": "rollup -c",
"version": "node scripts/version.js",
"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",
"build": "npm run lint && npm run tsc && npm run rollup && npm run version && npm run minify",
"test": "karma start --singleRun",
"docs": "node scripts/docs.js"
}
}