-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "crizmas-mvc",
"version": "2.0.5",
"description": "MVC framework",
"license": "MIT",
"private": true,
"author": {
"name": "Raul-Sebastian Mihăilă",
"email": "raul.mihaila@gmail.com"
},
"type": "module",
"peerDependencies": {
"crizmas-router": "^2.0.5",
"react": "^16.5.2 || ^17.0.2",
"react-dom": "^16.5.2 || ^17.0.2"
},
"peerDependenciesMeta": {
"crizmas-router": {
"optional": true
}
},
"homepage": "https://raulsebastianmihaila.github.io/crizmas-mvc-docs",
"repository": {
"type": "git",
"url": "https://github.com/raulsebastianmihaila/crizmas-mvc"
},
"bugs": "https://github.com/raulsebastianmihaila/crizmas-mvc/issues",
"keywords": [
"mvc",
"react",
"crizmas",
"reactjs",
"christmas",
"javascript",
"framework",
"front-end",
"router",
"form"
],
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --experimental-abortcontroller' npx jest",
"test-coverage": "NODE_OPTIONS='--experimental-vm-modules --experimental-abortcontroller' npx jest --coverage"
},
"devDependencies": {
"crizmas-router": "^2.0.5",
"jest": "^27.5.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}