-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.62 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
{
"name": "lbc-receipt",
"version": "0.1.0",
"description": "How to use jest/karma/wdio for lwc component",
"main": "index.js",
"repository": "albert-sf/lbc-receipt",
"license": "MIT",
"scripts": {
"test": "yarn test:unit && yarn test:karma && yarn test:wdio",
"test:unit": "jest -c jest.config.js src/ --runInBand",
"test:karma": "karma start --single-run",
"test:wdio": "wdio wdio.conf.js",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"dependencies": {
"@salesforce-ux/design-system": "^2.10.2",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"glob": "^7.1.6",
"npm-run-all": "^4.1.3"
},
"devDependencies": {
"@lwc/compiler": "1.1.1",
"@lwc/engine": "1.1.1",
"@lwc/jest-preset": "4.3.0",
"@lwc/jest-resolver": "4.3.0",
"@lwc/jest-serializer": "4.3.0",
"@lwc/jest-transformer": "4.3.0",
"@lwc/rollup-plugin": "1.1.1",
"@lwc/synthetic-shadow": "1.1.1",
"@lwc/wire-service": "1.1.1",
"@wdio/cli": "^5.9.1",
"@wdio/jasmine-framework": "^5.9.1",
"@wdio/local-runner": "^5.9.1",
"@wdio/selenium-standalone-service": "^5.8.4",
"@wdio/sync": "^5.9.1",
"aws-sdk": "^2.442.0",
"chokidar": "^3.0.0",
"conventional-changelog-cli": "^2.0.17",
"cross-env": "^5.2.0",
"dotenv": "^7.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-lwc": "^0.5.2",
"execa": "^1.0.0",
"history": "^4.9.0",
"istanbul-api": "^2.1.1",
"jasmine-core": "^3.3.0",
"jest": "~24.8.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"lwc": "1.1.1",
"markdown": "^0.5.0",
"marked": "^0.6.1",
"mime-types": "^2.1.24",
"node-static": "^0.7.11",
"pre-push": "^0.1.1",
"prettier": "1.17.0",
"pretty-quick": "^1.10.0",
"rollup": "0.66.2",
"rollup-plugin-cleaner": "^0.2.0",
"rollup-plugin-compat": "^0.21.4",
"rollup-plugin-cpy": "^1.1.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"static-server": "^2.2.1",
"webdriverio": "^5.7.2",
"xml2js": "^0.4.19"
},
"lwc": {
"mapNamespaceFromPath": true,
"modules": [
"src"
]
}
}