-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "@jymfony/security-bundle",
"version": "0.1.0-dev",
"description": "Jymfony Security Bundle",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"jymfony"
],
"author": "Alessandro Chitolina <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@jymfony/autoloader": "git+https://github.com/jymfony/autoloader.git",
"@jymfony/config": "git+https://github.com/jymfony/config.git",
"@jymfony/contracts": "git+https://github.com/jymfony/contracts.git",
"@jymfony/dependency-injection": "git+https://github.com/jymfony/dependency-injection.git",
"@jymfony/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/framework-bundle": "git+https://github.com/jymfony/framework-bundle.git",
"@jymfony/security": "git+https://github.com/jymfony/security.git",
"@jymfony/util": "git+https://github.com/jymfony/util.git"
},
"devDependencies": {
"@jymfony/debug": "git+https://github.com/jymfony/debug.git",
"@jymfony/testing": "git+https://github.com/jymfony/testing.git",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Bundle.SecurityBundle": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Bundle.SecurityBundle.Tests": "test/"
}
}
}
}