forked from rooseveltframework/node-php-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.64 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
{
"name": "php",
"description": "Allows you to use PHP as a view engine for Express applications.",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/express-php-view-engine/graphs/contributors"
}
],
"version": "1.0.1",
"files": [
"index.d.ts",
"index.js",
"loader.php"
],
"homepage": "https://github.com/rooseveltframework/express-php-view-engine",
"license": "CC-BY-4.0",
"main": "index.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"dependencies": {
"circular": "~1.0.5",
"execa": "~5.1.1"
},
"devDependencies": {
"ava": "~3.15.0",
"c8": "~7.7.3",
"codecov": "~3.8.2",
"eslint": "~7.30.0",
"eslint-plugin-ava": "~12.0.0",
"express": "~4.17.1",
"lint-staged": "~11.0.0",
"standard": "~16.0.3",
"supertest": "~6.1.3"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/express-php-view-engine.git"
},
"keywords": [
"Express",
"Express.js",
"php",
"view engine"
],
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": [
"ava"
],
"rules": {
"ava/no-only-test": "error"
}
},
"scripts": {
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov ava",
"lint": "standard && eslint test/test.js",
"test": "ava"
},
"lint-staged": {
"*.js": "standard"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/kethinov"
}
}