-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "@jymfony/console",
"version": "0.1.0-dev",
"description": "Jymfony Console component",
"main": "src/Application.js",
"typings": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"console",
"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/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/util": "git+https://github.com/jymfony/util.git"
},
"devDependencies": {
"@jymfony/event-dispatcher": "git+https://github.com/jymfony/event-dispatcher.git",
"@jymfony/datetime": "git+https://github.com/jymfony/date-time.git",
"@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.Console": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Component.Console.Tests": "test/"
}
}
}
}