This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.36 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "generator-aurelia-cordova-electron",
"description": "An Aurelia client application.",
"version": "0.1.0",
"author": {
"name": "Sinan Bolel",
"email": "hi@sinanbolel.com",
"url": "https://sinanbolel.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sbolel/generator-aurelia-cordova-electron"
},
"bugs": {
"url": "https://github.com/sbolel/generator-aurelia-cordova-electron/issues",
"email": "hi@sinanbolel.com"
},
"scripts": {
"build": "run-s lint-fix build-prod",
"build-dev": "au build --env dev",
"build-stage": "au build --env stage",
"build-prod": "au build --env prod",
"start": "npm run run-dev",
"run-dev": "au run --env dev",
"run-stage": "au run --env stage",
"run-prod": "au run --env prod",
"lint": "standard",
"test": "run-p lint test-unit",
"test-unit": "au test",
"lint-fix": "standard --fix"
},
"dependencies": {
"aurelia-animator-css": "1.0.2",
"aurelia-bootstrapper": "2.1.1",
"bluebird": "3.5.0",
"cordova": "6.5.0",
"requirejs": "2.3.3",
"text": "github:requirejs/text#latest"
},
"devDependencies": {
"aurelia-cli": "0.28.0",
"aurelia-testing": "1.0.0-beta.3.0.1",
"aurelia-tools": "1.0.0",
"babel-core": "6.24.0",
"babel-eslint": "7.2.1",
"babel-plugin-istanbul": "4.1.1",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-modules-amd": "6.24.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-1": "6.22.0",
"babel-register": "6.24.0",
"babel-runtime": "6.23.0",
"browser-sync": "2.18.8",
"connect-history-api-fallback": "1.3.0",
"debug": "2.6.3",
"del": "2.2.2",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "3.1.1",
"gulp-babel": "6.1.2",
"gulp-changed-in-place": "2.2.0",
"gulp-concat": "2.6.1",
"gulp-eslint": "3.0.1",
"gulp-htmlmin": "3.0.0",
"gulp-insert": "0.5.0",
"gulp-notify": "3.0.0",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "2.5.1",
"html-minifier": "3.4.2",
"jasmine-core": "2.5.2",
"karma": "1.6.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-requirejs": "1.1.0",
"karma-typescript-preprocessor": "0.3.1",
"minimatch": "3.0.3",
"npm-run-all": "4.0.2",
"phantomjs-prebuilt": "2.1.14",
"standard": "10.0.1",
"through2": "2.0.3",
"uglify-js": "2.8.21",
"vinyl-fs": "2.4.4"
},
"peerDependencies": {},
"standard": {
"env": {
"jasmine": true
},
"ignore": [
"aurelia_project"
]
},
"keywords": [
"aurelia",
"aurelia-cli",
"cordova",
"electron",
"generator",
"starter"
]
}