-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.13 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
{
"name": "inversify-vue-test",
"version": "1.0.0",
"description": "Test of using InverisfyJS with VueJS and Vuex.",
"scripts": {
"start": "webpack-dev-server --config webpack-dev-server.config.js --inline --progress",
"build": "webpack --config webpack-build.config.js --progress --profile --bail --display-optimization-bailout",
"lint": "tslint --type-check --project tsconfig.json 'src/**/*.ts'",
"test": "NODE_ENV=test jest --coverage",
"precommit": "npm run test && lint-staged"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickhousley/inversify-vue-test.git"
},
"author": "Patrick Housley <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/patrickhousley/inversify-vue-test/issues"
},
"homepage": "https://github.com/patrickhousley/inversify-vue-test#readme",
"dependencies": {
"inversify": "4.1.1",
"material-design-lite": "1.3.0",
"reflect-metadata": "0.1.10",
"vue": "2.3.4",
"vue-class-component": "5.0.1",
"vue-property-decorator": "5.1.0",
"vue-router": "2.7.0",
"vuex": "2.3.1"
},
"devDependencies": {
"@types/jest": "20.0.2",
"autoprefixer": "7.1.1",
"babel": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"clean-webpack-plugin": "0.1.16",
"css-loader": "0.28.4",
"cssnano": "3.10.0",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.29.0",
"husky": "0.14.2",
"jest": "20.0.4",
"jest-vue-preprocessor": "1.0.1",
"json-loader": "0.5.4",
"lint-staged": "4.0.0",
"node-sass": "4.5.3",
"postcss-loader": "2.0.6",
"prettier": "1.5.2",
"sass-loader": "6.0.6",
"stats-webpack-plugin": "0.6.1",
"style-loader": "0.18.2",
"stylefmt": "6.0.0",
"ts-jest": "20.0.6",
"ts-loader": "2.2.1",
"tslib": "1.7.1",
"tslint": "5.4.3",
"typescript": "2.4.1",
"vue-loader": "13.0.0",
"webpack": "3.0.0",
"webpack-dev-server": "2.5.0",
"webpack-merge": "4.1.0"
},
"lint-staged": {
"src/*.ts": [
"prettier --parser typescript --single-quote --write",
"git add"
],
"src/**/*.scss": [
"stylefmt",
"git add"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!src/*.{js,ts}",
"!src/**/*.spec.{js,ts}",
"!**/*.interface.ts",
"!src/test-lib/**/*.ts"
],
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"coverageDirectory": "./coverage",
"globals": {
"__TS_CONFIG__": "tsconfig.json",
"__TRANSFORM_HTML__": true
},
"moduleDirectories": [
"node_modules",
"<rootDir>/"
],
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/src/setup-jest.ts",
"testRegex": "\\.spec\\.(ts|js)$",
"transform": {
".js$": "<rootDir>/node_modules/babel-jest",
".vue$": "<rootDir>/node_modules/jest-vue-preprocessor",
".ts$": "<rootDir>/node_modules/ts-jest/preprocessor"
}
}
}