-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.47 KB
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
52
53
54
55
56
57
58
59
{
"name": "@jymfony/framework-bundle",
"version": "0.1.0-dev",
"description": "Jymfony Framework Bundle",
"typings": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"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/cache": "git+https://github.com/jymfony/cache.git",
"@jymfony/config": "git+https://github.com/jymfony/config.git",
"@jymfony/console": "git+https://github.com/jymfony/console.git",
"@jymfony/contracts": "git+https://github.com/jymfony/contracts.git",
"@jymfony/datetime": "git+https://github.com/jymfony/date-time.git",
"@jymfony/debug": "git+https://github.com/jymfony/debug.git",
"@jymfony/dependency-injection": "git+https://github.com/jymfony/dependency-injection.git",
"@jymfony/event-dispatcher": "git+https://github.com/jymfony/event-dispatcher.git",
"@jymfony/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/filesystem": "git+https://github.com/jymfony/filesystem.git",
"@jymfony/kernel": "git+https://github.com/jymfony/kernel.git",
"@jymfony/util": "git+https://github.com/jymfony/util.git"
},
"devDependencies": {
"@jymfony/debug": "git+https://github.com/jymfony/debug.git",
"@jymfony/http-foundation": "git+https://github.com/jymfony/http-foundation.git",
"@jymfony/http-server": "git+https://github.com/jymfony/http-server.git",
"@jymfony/mime": "git+https://github.com/jymfony/mime.git",
"@jymfony/routing": "git+https://github.com/jymfony/routing.git",
"@jymfony/security": "git+https://github.com/jymfony/security.git",
"@jymfony/security-bundle": "git+https://github.com/jymfony/security-bundle.git",
"@jymfony/stopwatch": "git+https://github.com/jymfony/stopwatch.git",
"@jymfony/templating": "git+https://github.com/jymfony/templating.git",
"@jymfony/testing": "git+https://github.com/jymfony/testing.git",
"@jymfony/var-dumper": "git+https://github.com/jymfony/var-dumper.git",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Bundle.FrameworkBundle": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Bundle.FrameworkBundle.Tests": "test/",
"Jymfony.Bundle.FrameworkBundle.Tests.Fixtures": "fixtures/"
}
}
}
}