-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.63 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
{
"name": "reality",
"version": "0.12.6",
"description": "Adds little side panel to some real estate sites which shows you quality of location eg. commutation times, air pollution.",
"private": true,
"scripts": {
"cleanup": "rm -rf build",
"build": "npm run cleanup && node scripts/build-manifest.js && webpack -p",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"lint": "eslint -c .eslintrc ./src/",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"prepush": "npm run lint && npm run test",
"start": "yarn cleanup && node scripts/webserver.js",
"test": "jest",
"test:ci": "yarn lint && yarn test -- --coverage"
},
"dependencies": {
"font-awesome": "^4.7.0",
"jquery": "3.4.0",
"vue": "2.3.4",
"vue-i18n": "7.0.3"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.0.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"commitizen": "2.9.6",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "0.28.4",
"cz-conventional-changelog": "2.0.0",
"dotenv": "4.0.0",
"eslint": "4.0.0",
"eslint-loader": "1.8.0",
"expose-loader": "0.7.3",
"extract-text-webpack-plugin": "2.1.2",
"fs-extra": "3.0.1",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"husky": "0.13.4",
"jest": "20.0.4",
"jest-vue-preprocessor": "1.0.1",
"lint-staged": "4.0.0",
"postcss-loader": "1.3.3",
"precss": "^1.4.0",
"progress-bar-webpack-plugin": "1.9.3",
"pug": "2.0.0-rc.2",
"style-loader": "0.18.2",
"validate-commit-msg": "2.12.2",
"vue-loader": "12.2.1",
"vue-template-compiler": "2.3.4",
"webpack": "2.6.1",
"webpack-dev-server": "3.1.11",
"write-file-webpack-plugin": "4.1.0"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"**/src/js/*.js",
"**/src/**/*.vue",
"**/src/js/components/**.js",
"**/src/js/sites/**.js",
"**/src/js/services/**.js",
"!**/src/js/18n/*.js",
"!**/src/js/background.js"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.vue$": "<rootDir>/node_modules/jest-vue-preprocessor"
},
"verbose": true
},
"lint-staged": {
"src/**/*.js": [
"lint:fix",
"git add"
]
},
"engines": {
"node": ">=6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"maxSubjectLength": 120
}
}
}