-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "@jymfony/runtime",
"version": "0.1.0-dev",
"description": "Jymfony Runtime component",
"typings": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"runtime",
"jymfony"
],
"author": "Alessandro Chitolina <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@jymfony/autoloader": "git+https://github.com/jymfony/autoloader.git",
"@jymfony/console": "git+https://github.com/jymfony/console.git",
"@jymfony/contracts": "git+https://github.com/jymfony/contracts.git",
"@jymfony/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/util": "git+https://github.com/jymfony/util.git"
},
"devDependencies": {
"@jymfony/debug": "git+https://github.com/jymfony/debug.git",
"@jymfony/dotenv": "git+https://github.com/jymfony/dotenv.git",
"@jymfony/filesystem": "git+https://github.com/jymfony/filesystem.git",
"@jymfony/http-client": "git+https://github.com/jymfony/http-client.git",
"@jymfony/http-server": "git+https://github.com/jymfony/http-server.git",
"@jymfony/testing": "git+https://github.com/jymfony/testing.git",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Component.Runtime": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Component.Runtime.Tests": "test/"
}
}
}
}