-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
49
50
51
{
"name": "@jymfony/datetime",
"version": "0.1.0-dev",
"description": "Jymfony DateTime Component",
"typings": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"date",
"datetime",
"datetimezone",
"timezone",
"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/datastructure": "git+https://github.com/jymfony/data-structure.git",
"@jymfony/exceptions": "git+https://github.com/jymfony/exceptions.git",
"@jymfony/lexer": "git+https://github.com/jymfony/lexer.git",
"@jymfony/util": "git+https://github.com/jymfony/util.git",
"@jymfony/var-exporter": "git+https://github.com/jymfony/var-exporter.git"
},
"devDependencies": {
"@jymfony/console": "git+https://github.com/jymfony/console.git",
"@jymfony/debug": "git+https://github.com/jymfony/debug.git",
"@jymfony/http-client": "git+https://github.com/jymfony/http-client.git",
"@jymfony/filesystem": "git+https://github.com/jymfony/filesystem.git",
"@jymfony/runtime": "git+https://github.com/jymfony/runtime.git",
"@jymfony/testing": "git+https://github.com/jymfony/testing.git",
"eslint": "^8.40.0",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Jymfony.Component.DateTime": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.Component.DateTime.Tests": "test/"
}
}
}
}