-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.73 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
{
"name": "aurelia-redux-connect",
"version": "1.0.0",
"description": "An Aurelia Redux Formal Integration.",
"main": "dist/index.js",
"productName": "aurelia-redux-connect",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/istrau2/aurelia-redux-connect.git"
},
"keywords": [
"aurelia",
"redux",
"connect",
"integration"
],
"author": "Ishai Strauss",
"scripts": {
"start": "nps",
"test": "nps test",
"transpile": "nps transpile",
"prepublish": "npm run transpile"
},
"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",
"AureliaResources": "<rootDir>/node_modules/AureliaResources/dist/index.js"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"devDependencies": {
"aurelia-loader-nodejs": "1.0.1",
"aurelia-pal-nodejs": "1.0.0-beta.1.0.0",
"aurelia-testing": "1.0.0-beta.3.0.1",
"aurelia-tools": "1.0.0",
"babel-cli": "6.26.0",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-plugin-istanbul": "4.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-polyfill": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-register": "6.24.1",
"cross-env": "5.0.1",
"eslint": "3.19.0",
"jasmine-core": "2.6.4",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"nps": "5.6.0",
"nps-utils": "1.2.0",
"wait-on": "2.0.2"
},
"dependencies": {
"aurelia-dependency-injection": "^1.3.2",
"lodash": "^4.17.4",
"redux": "^3.7.2"
}
}