forked from adobecom/dc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.28 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
{
"name": "@adobecom/dc",
"private": true,
"version": "1.0.0",
"description": "Website foundation technology.",
"scripts": {
"test": "npm run wtr ; npm run jest",
"wtr": "wtr \"./test/**/*.test.(js|html)\" --node-resolve --port=2000 --coverage --concurrent-browsers 4",
"wtr:watch": "npm run wtr -- --watch",
"jest": "jest --coverage --coverageDirectory=coverage/jest",
"jest:watch": "npm run jest -- --watchAll",
"lcov": "lcov -a coverage/jest/lcov.info -a coverage/wtr/lcov.info -o coverage/lcov.info",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint 'blocks/**/*.css' 'styles/*.css'",
"update-csp": "node ./tools/cspUpdate/cspUpdate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobecom/college.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobecom/college/issues"
},
"homepage": "https://github.com/adobecom/college#readme",
"devDependencies": {
"@babel/core": "7.17.7",
"@babel/register": "7.17.0",
"@babel/eslint-parser": "7.17.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/dev-server-import-maps": "^0.0.6",
"@web/test-runner": "0.13.27",
"@web/test-runner-commands": "0.6.1",
"@amwp/platform-ui-automation": "^0.0.2",
"@amwp/platform-ui-lib-adobe": "^0.0.2",
"chai": "4.3.6",
"eslint": "8.11.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"microbundle": "^0.15.1",
"sinon": "13.0.1",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0"
},
"dependencies": {
"bowser": "^2.11.0"
},
"jest": {
"testRegex": "\\.jest\\.(js|jsx)$",
"collectCoverageFrom": [
"acrobat/**/*.js"
],
"coverageProvider": "v8",
"moduleNameMapper": {
"^https:\/\/main--milo--adobecom\\.hlx\\.page\/libs/(.*)$": "<rootDir>/test/mocks/milo/libs/$1",
"^https:\/\/www\\.adobe\\.com\/libs/(.*)$": "<rootDir>/test/mocks/milo/libs/$1",
"^http:\/\/localhost:6456\/libs/(.*)$": "<rootDir>/test/mocks/milo/libs/$1",
"^\/libs/(.*)$": "<rootDir>/test/mocks/milo/libs/$1"
}
}
}