-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.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
{
"name": "@cz-nic/django-fido",
"version": "1.2.1",
"description": "Django application for FIDO protocol",
"scripts": {
"check": "eslint --ext .js django_fido/js-tests django_fido/js",
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CZ-NIC/django-fido.git"
},
"author": "Vlastimil Zíma <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/CZ-NIC/django-fido/issues"
},
"homepage": "https://github.com/CZ-NIC/django-fido#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"core-js": "^3.10.1",
"eslint": "^7.5.0",
"fetch-mock": "^9.10.4",
"jest": "^26.1.0",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.7",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}