-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.03 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
{
"name": "jsonar",
"version": "1.8.0",
"description": "Convert JSON to PHP native Array",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "xo && ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oknoorap/jsonar.git"
},
"keywords": [
"json",
"php",
"php-array"
],
"author": "Ribhararnus Pracutian <[email protected]> (https://www.oknoorap.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oknoorap/jsonar/issues"
},
"homepage": "https://github.com/oknoorap/jsonar#readme",
"devDependencies": {
"ava": "^0.22.0",
"xo": "^0.18.2"
},
"ava": {
"files": [
"test/test.js"
]
},
"xo": {
"esnext": true,
"space": true,
"semicolon": false,
"ignore": [
"test/node-test.js"
]
},
"dependencies": {
"escape-quotes": "^1.0.2",
"lodash.isempty": "^4.4.0",
"lodash.isplainobject": "^4.0.6",
"php-parser": "^2.0.6"
},
"files": [
"index.js"
]
}