-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.07 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
{
"name": "alpheios-messaging",
"version": "2.0.5",
"description": "A messaging service for Alpheios Tools",
"main": "dist/prod/alpheios-messaging.min.js",
"scripts": {
"test": "jest --coverage",
"build": "npm run build-node && npm run build-dev && npm run build-prod",
"build-node": "node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M development -p lib -c config-node.mjs",
"build-prod": "npm run lint && node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M production -p lib -c config.mjs",
"build-dev": "node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M development -p lib -c config.mjs",
"build-test": "node --experimental-modules ./node_modules/alpheios-node-build/dist/build.mjs -m webpack -M development -p lib -c config-test.mjs",
"lint": "eslint --fix ./src/**/*.js",
"lint-nofix": "eslint ./src/**/*.js",
"start-dev-server": "npx http-server ./tests/browser --port 8100 -c-1",
"test-e2e": "npx wdio wdio.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alpheios-project/alpheios-messaging.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alpheios-project/alpheios-messaging/issues"
},
"homepage": "https://github.com/alpheios-project/alpheios-messaging#readme",
"engines": {
"node": ">= 13.2.0",
"npm": ">= 6.9.0"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"!node_modules/"
],
"moduleNameMapper": {
"^@messServ[/](.+)": "<rootDir>/src/$1"
},
"moduleFileExtensions": [
"js"
]
},
"eslintConfig": {
"plugins": [
"wdio"
],
"extends": [
"standard",
"plugin:jsdoc/recommended",
"plugin:vue/essential",
"plugin:wdio/recommended"
],
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2019,
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"no-prototype-builtins": "off",
"dot-notation": "off"
}
},
"eslintIgnore": [
"**/dist",
"**/support"
],
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"@wdio/cli": "^6.1.11",
"@wdio/jasmine-framework": "^6.1.8",
"@wdio/local-runner": "^6.1.11",
"@wdio/mocha-framework": "^6.1.8",
"@wdio/spec-reporter": "^6.1.9",
"@wdio/sync": "^6.1.8",
"alpheios-node-build": "github:alpheios-project/node-build#semver:^3.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"bytes": "^3.1.0",
"chromedriver": "^81.0.0",
"command-line-args": "^5.1.1",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^25.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-wdio": "^6.0.12",
"eslint-scope": "^5.0.0",
"expect-webdriverio": "^1.1.5",
"git-branch": "^2.0.1",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^7.1.0",
"imagemin-svgo": "^7.1.0",
"inspectpack": "^4.4.0",
"jest": "^26.0.1",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass": "^1.26.5",
"source-map-loader": "^0.2.4",
"uuid": "^8.0.0",
"wdio-chromedriver-service": "^6.0.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {}
}