-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "php-obj-deserializer",
"version": "0.1.4",
"description": "deserialize php objects to javascript objects",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev src/index.ts",
"debug": "ts-node-dev --inspect=0.0.0.0:7001 --exit-child --transpile-only --respawn src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HBeserra/PHP-object-deserializer.git"
},
"keywords": [
"php",
"objects",
"js"
],
"author": "HBeserra",
"license": "MIT",
"bugs": {
"url": "https://github.com/HBeserra/PHP-object-deserializer/issues"
},
"homepage": "https://github.com/HBeserra/PHP-object-deserializer#readme",
"dependencies": {
"typescript": "^4.6.4"
},
"devDependencies": {
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8"
}
}