-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.94 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.94 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "jspm-ionic",
"version": "1.0.0",
"description": "jspm-ionic: An Ionic project",
"scripts": {
"lint:js": "jshint --reporter=node_modules/jshint-stylish src",
"build:assets": "mkdir -p www/fonts && cp -r jspm_packages/github/driftyco/ionic-bower@*/fonts www/ && echo 'Built assets'",
"build:index": "jade src/index.jade --out www",
"build:js": "npm run lint:js & jspm bundle-sfx src/app.js www/app.js",
"build:css": "node-sass scss/style.scss www/style.css --output-style compressed --source-map true --importer node_modules/sass-jspm-importer/src/importer.js",
"watch:assets": "gaze 'npm run build:assets' 'jspm_packages/**/*'",
"watch:index": "npm run build:index -- -w",
"watch:js": "gaze 'npm run build:js' 'src/**/*.js' 'src/**/!(index)*.jade'",
"watch:css": "npm run build:css -- -wr",
"build": "npm run build:assets & npm run build:index & npm run build:js & npm run build:css",
"watch": "npm run watch:index & npm run watch:js & npm run watch:css",
"test": "karma start",
"clean": "rm -rf www"
},
"devDependencies": {
"chai": "^3.3.0",
"gaze-cli": "^0.2.0",
"isparta": "^3.1.0",
"istanbul": "gotwarlost/istanbul.git#source-map",
"jade": "^1.11.0",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"jspm": "^0.16.11",
"karma": "^0.13.10",
"karma-babel-preprocessor": "^5.2.2",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "douglasduteil/karma-coverage.git#next",
"karma-jspm": "^2.0.1",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"mocha": "^2.3.3",
"node-sass": "^3.3.3",
"sass-jspm-importer": "0.0.5",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"com.ionic.keyboard"
],
"cordovaPlatforms": [],
"jspm": {
"dependencies": {
"angular-mocks": "github:angular/bower-angular-mocks@^1.4.7",
"ionic": "github:driftyco/ionic-bower@^1.1.0",
"jade": "github:johnsoftek/plugin-jade@^0.5.1"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
},
"overrides": {
"github:driftyco/ionic-bower@1.1.0": {
"registry": "jspm",
"main": "js/ionic-angular",
"shim": {
"js/ionic-angular": {
"exports": "ionic",
"deps": [
"./ionic",
"angular",
"angular-animate",
"angular-sanitize",
"angular-ui-router"
]
}
},
"dependencies": {
"angular": "^1.3.6",
"angular-animate": "^1.3.6",
"angular-sanitize": "^1.3.6",
"angular-ui-router": "0.2.13"
}
}
}
}
}