-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "@timkit/json-to-php",
"version": "1.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build && jest",
"build": "./node_modules/typescript/bin/tsc",
"watch": "./node_modules/typescript/bin/tsc --watch",
"prepublishOnly": "npm run test"
},
"author": "tinkit.dev",
"license": "Apache-2.0",
"keywords": [
"json",
"php",
"convert",
"json to php",
"json to array",
"json to object",
"json to associative array",
"json2php",
"jsontophp"
],
"description": "Convert JSON strings into PHP-style associative arrays.",
"devDependencies": {
"@tsconfig/node20": "^20.1.5",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"ts-jest": "^29.3.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timkit-dev/json-to-php.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"tagy": {
"auto-release": true
}
}