-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 KB
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
{
"version": "8.1.2",
"name": "phpcore",
"description": "Minimal PHP core library for PHP environments",
"keywords": [
"php",
"runtime"
],
"homepage": "https://github.com/uniter/phpcore",
"author": "Dan Phillimore <dan@ovms.co> (http://ovms.co)",
"repository": {
"type": "git",
"url": "https://github.com/uniter/phpcore"
},
"bugs": {
"email": "dan@ovms.co",
"url": "http://github.com/uniter/phpcore/issues"
},
"main": "index",
"scripts": {
"jshint": "jshint .",
"mocha": "mocha -r mocha-bootstrap --recursive test/integration/ test/unit/",
"test": "npm run jshint && npm run mocha"
},
"dependencies": {
"core-js-pure": "^3.37.1",
"es6-weak-map": "^2.0.3",
"lie": "^3.3.0",
"microdash": "^1.4.2",
"pauser": "^1.1.1",
"phpcommon": "^2.0.2"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"jshint": "^2.13.6",
"mocha": "^10.4.0",
"mocha-bootstrap": "^1.0.6",
"nowdoc": "^1.0.1",
"phptest": "^0.0.10",
"phptoast": "^9.3.0",
"phptojs": "^10.2.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"engines": {
"node": ">=0.6"
},
"license": "MIT"
}