-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·122 lines (122 loc) · 3.25 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
{
"author": "Stefan Sopic",
"name": "Fairlance-frontend",
"version": "1.1.0",
"homepage": "http://www.fairlance.io",
"bugs": {
"url": "https://github.com/fairlance/frontend/issues"
},
"license": "CC0-1.0",
"main": "dist/app.bundle.js",
"scripts": {
"start": "nps",
"test": "nps test"
},
"repository": {
"type": "git",
"url": "http://github.com/fairlance/frontend.git"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"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"
],
"mapCoverage": true
},
"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",
"bluebird": "3.5.0",
"bootstrap-sass": "3.3.7",
"font-awesome": "4.7.0",
"isomorphic-fetch": "2.2.1",
"jquery": "3.2.1"
},
"devDependencies": {
"@types/jest": "19.2.3",
"@types/lodash": "4.14.64",
"@types/node": "7.0.18",
"@types/webpack": "2.2.15",
"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-webpack-plugin": "2.0.0-rc.2",
"autoprefixer": "7.0.0",
"awesome-typescript-loader": "3.1.3",
"copy-webpack-plugin": "4.0.1",
"cross-env": "4.0.0",
"css-loader": "0.28.1",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-webpack-plugin": "2.28.0",
"http-server": "0.10.0",
"istanbul-instrumenter-loader": "2.0.0",
"jasmine-core": "2.6.1",
"jest": "20.0.0",
"jest-cli": "~20.0.0",
"json-loader": "0.5.4",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-coverage-istanbul-reporter": "1.2.1",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.3",
"karma-webpack": "2.0.3",
"node-sass": "4.5.2",
"nps": "5.1.0",
"nps-utils": "1.2.0",
"postcss-loader": "1.3.3",
"protractor": "5.1.1",
"sass-loader": "6.0.5",
"style-loader": "0.17.0",
"ts-jest": "20.0.0",
"ts-node": "3.0.4",
"typescript": "2.3.2",
"url-loader": "0.5.8",
"wait-on": "2.0.2",
"webpack": "2.5.1",
"webpack-dev-server": "2.4.5"
}
}