-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
34 lines (34 loc) · 884 Bytes
/
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
{
"name": "django-js-routes",
"repository": "https://github.com/ellmetha/django-js-routes",
"private": true,
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^20.0.3",
"lodash": ">=4.17.21",
"lodash.template": ">=4.5.0",
"mixin-deep": ">=1.3.2",
"serialize-javascript": ">=3.1.0",
"set-value": ">=4.0.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"js_routes/static/js/**/*.{js,jsx}"
],
"coverageDirectory": "./coverage/",
"moduleDirectories": [
"node_modules",
"js_routes/static/js"
],
"testRegex": "(/tests/jstests/.*|\\.(react-test|spec|test))\\.(ts|tsx|js|jsx)$"
},
"scripts": {
"test": "jest"
}
}