-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
62 lines (62 loc) · 1.57 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
{
"version": "2.18.0",
"name": "uniter",
"publishConfig": {
"proprietary-attribs": false
},
"description": "Uniter - PHP in the browser and Node.js",
"keywords": [
"javascript",
"php",
"recompiler",
"interpreter"
],
"config": {
"publishtest": false
},
"homepage": "https://asmblah.github.io/uniter/",
"author": "Daniel Phillimore <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/asmblah/uniter"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/asmblah/uniter/issues"
},
"main": "index",
"bin": "bin/uniter",
"scripts": {
"build": "mkdir -p ./dist && browserify --standalone=uniter index | uglifyjs --mangle > ./dist/uniter.js",
"build-demo": "npm run build && mkdir -p ./dist/demo && browserify demo/interactive-main > ./dist/demo/interactive.js",
"jshint": "jshint .",
"mocha": "mocha --recursive -r mocha-bootstrap tests/bdd/integration/",
"test": "npm run jshint && npm run mocha"
},
"dependencies": {
"dotphp": "^3.8.1",
"microdash": "^1.4.2",
"phpcommon": "^2.0.2",
"phpruntime": "^9.0.1",
"phptoast": "^9.1.1",
"phptojs": "^10.0.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"express": "^4.18.2",
"glob": "^9.2.1",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"mocha-bootstrap": "^1.0.4",
"nowdoc": "^1.0.1",
"sinon": "^15.0.1",
"sinon-chai": "^3.7.0",
"uglify-js": "^3.17.4"
},
"engines": {
"node": ">=8"
},
"license": "MIT"
}