-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "@jymfony/security",
"version": "0.1.0-dev",
"description": "Jymfony Http Security component",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"security",
"http-firewall",
"jymfony"
],
"author": "Alessandro Chitolina <alekitto@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@jymfony/autoloader": "git+https://github.com/jymfony/autoloader.git",
"@jymfony/contracts": "git+https://github.com/jymfony/contracts.git",
"@jymfony/event-dispatcher": "git+https://github.com/jymfony/event-dispatcher.git",
"@jymfony/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/http-foundation": "git+https://github.com/jymfony/http-foundation.git",
"@jymfony/http-server": "git+https://github.com/jymfony/http-server.git",
"@jymfony/logger": "git+https://github.com/jymfony/logger.git",
"@jymfony/routing": "git+https://github.com/jymfony/routing.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",
"chai": "^4.2",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Component.Security": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Component.Security.Fixtures": "fixtures/",
"Jymfony.Component.Security.Tests": "test/"
}
}
}
}