-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@jymfony/kumis",
"description": "A powerful asynchronous templating engine (jinja2 inspired)",
"version": "0.1.0-dev",
"author": "Alessandro Chitolina <alekitto@gmail.com>",
"engines": {
"node": ">= 10"
},
"scripts": {
"test:instrument": "nyc npm run test:runner",
"test:runner": "node ./tests.js",
"test": "npm run test:runner"
},
"flat": true,
"main": "index",
"dependencies": {
"@jymfony/autoloader": "^0.1.0-alpha.28",
"@jymfony/cache": "^0.1.0-alpha.28",
"@jymfony/datastructure": "^0.1.0-alpha.28",
"@jymfony/exceptions": "^0.1.0-alpha.28",
"@jymfony/filesystem": "^0.1.0-alpha.28",
"@jymfony/util": "^0.1.0-alpha.28"
},
"typings": "types/index.d.ts",
"devDependencies": {
"@jymfony/config": "^0.1.0-alpha.28",
"@jymfony/contracts": "^0.1.0-alpha.28",
"@jymfony/debug": "^0.1.0-alpha.28",
"@jymfony/dependency-injection": "^0.1.0-alpha.28",
"@jymfony/event-dispatcher": "^0.1.0-alpha.28",
"@jymfony/framework-bundle": "^0.1.0-alpha.28",
"@jymfony/http-foundation": "^0.1.0-alpha.28",
"@jymfony/http-server": "^0.1.0-alpha.28",
"@jymfony/kernel": "^0.1.0-alpha.28",
"@jymfony/routing": "^0.1.0-alpha.28",
"@jymfony/security": "^0.1.0-alpha.28",
"@jymfony/security-bundle": "^0.1.0-alpha.28",
"@jymfony/templating": "^0.1.0-alpha.28",
"@jymfony/testing": "^0.1.0-alpha.28",
"@jymfony/var-dumper": "^0.1.0-alpha.28",
"chai": "^4.2.0",
"mocha": "^6",
"nyc": "^15.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jymfony/kumis.git"
},
"config": {
"jymfony-autoload": {
"namespaces": {
"Kumis": "src/"
}
},
"jymfony-autoload-dev": {
"namespaces": {
"Tests": "tests/"
}
}
},
"keywords": [
"template",
"templating"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/jymfony/kumis/issues"
},
"nyc": {
"per-file": true,
"hookRequire": true,
"hookRunInContext": true,
"hookRunInThisContext": true,
"include": [
"src/**/*.js",
"src/*.js"
],
"exclude": [
"**/*Interface.js",
"**/namespace-stub.js",
"**/tests/**",
"**/Resources/config/**",
"tests.js"
],
"reporter": [
"clover",
"lcov",
"text-summary"
],
"all": true,
"report-dir": "./coverage"
}
}