forked from readthedocs/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "readthedocs-client",
"version": "0.1.0",
"description": "Read the Docs client embeded into documentation pages",
"main": "dist/readthedocs-client.js",
"scripts": {
"build": "webpack --mode=production --progress",
"clean": "rm -rfv dist/*; exit 0",
"dev": "webpack-dev-server --mode=development",
"lint": "prettier --check 'src/**' '*.js' '*.json'",
"format": "prettier --write 'src/**' '*.js' '*.json'",
"test": "jest tests/"
},
"author": "Read the Docs, Inc",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/preset-env": "^7.20.2",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"doc-diff": "github:readthedocs/doc-diff#humitos/nodejs-version",
"ethical-ad-client": "github:readthedocs/ethical-ad-client#humitos/node-sass",
"express-interceptor": "^1.2.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jquery": "^3.6.4",
"lit": "^2.7.1",
"prettier": "^2.8.4",
"semver": "^7.3.8",
"tippy.js": "^6.3.7",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-import-assertions"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties"
]
}
}
},
"jest": {
"automock": false,
"setupFiles": [
"<rootDir>/tests/__mocks__/setup.js"
],
"testEnvironment": "jest-environment-jsdom",
"globals": {
"__webpack_public_path__": null
},
"moduleNameMapper": {
"\\.css$": "<rootDir>/tests/__mocks__/styleMock.js"
}
}
}