-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.1 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "aurelia-mobile-skeleton",
"version": "0.0.1",
"description": "aurelia-mobile-skeleton",
"author": "Razvan Moldovan <m.razvan92@gmail.com>",
"license": "Apache-2.0",
"main": "dist/app.bundle.js",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "nps",
"test": "nps test"
},
"devDependencies": {
"aurelia-loader-nodejs": "1.0.1",
"aurelia-pal-nodejs": "1.0.0-beta.1.0.0",
"aurelia-protractor-plugin": "1.0.3",
"aurelia-testing": "1.0.0-beta.3.0.1",
"aurelia-tools": "1.0.0",
"aurelia-webpack-plugin": "2.0.0-rc.2",
"autoprefixer": "7.1.1",
"babel-core": "6.25.0",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-plugin-istanbul": "4.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-register": "6.24.1",
"copy-webpack-plugin": "4.0.1",
"cross-env": "5.0.1",
"css-loader": "0.28.4",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "0.11.2",
"html-webpack-plugin": "2.28.0",
"http-server": "0.10.0",
"jasmine-core": "2.6.3",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"json-loader": "0.5.4",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-webpack": "2.0.3",
"node-sass": "^4.5.3",
"nps": "5.3.1",
"nps-utils": "1.2.0",
"postcss-loader": "2.0.5",
"protractor": "5.1.2",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "0.18.2",
"url-loader": "0.5.8",
"wait-on": "2.0.2",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5"
},
"dependencies": {
"aurelia-bootstrapper": "2.1.1",
"aurelia-fetch-client": "1.1.2",
"aurelia-framework": "1.1.2",
"aurelia-history-browser": "1.0.0",
"aurelia-loader-webpack": "2.1.0",
"aurelia-logging-console": "1.0.0",
"aurelia-pal-browser": "1.2.1",
"aurelia-polyfills": "1.2.1",
"aurelia-router": "1.3.0",
"aurelia-templating": "1.4.2",
"aurelia-templating-binding": "1.3.0",
"aurelia-templating-resources": "1.4.0",
"aurelia-templating-router": "1.1.0",
"aurelia-ux": "^0.2.0",
"aurelia-validation": "^1.1.1",
"bluebird": "3.5.0",
"bootstrap": "3.3.7",
"cordova-android": "^6.2.3",
"cordova-plugin-whitelist": "^1.3.2",
"font-awesome": "4.7.0",
"install": "^0.10.1",
"ionic-plugin-keyboard": "^2.2.1",
"isomorphic-fetch": "2.2.1",
"jquery": "3.2.1",
"npm": "^5.3.0"
},
"displayName": "aurelia-mobile-skeleton",
"cordova": {
"platforms": [
"android"
],
"plugins": {
"cordova-plugin-whitelist": {},
"ionic-plugin-keyboard": {}
}
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.js"
],
"testEnvironment": "node",
"moduleNameMapper": {
"aurelia-(.*)": "<rootDir>/node_modules/$1"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}