-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1012 Bytes
/
composer.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
{
"name": "nuxed/json",
"type": "library",
"description": "Nuxed Json",
"license": "MIT",
"authors": [
{
"name": "azjezz",
"email": "azjezz@protonmail.com"
},
{
"name": "Nuxed Community",
"homepage": "https://github.com/nuxed/json/graphs/contributors"
}
],
"require": {
"hhvm": "~4.83.1 || ~4.84.0",
"hhvm/type-assert": "^4.1.2"
},
"require-dev": {
"facebook/difflib": "^1.1.1",
"facebook/fbexpect": "^2.7.7",
"facebook/hh-clilib": "^2.5.2",
"hhvm/hacktest": "^2.0",
"hhvm/hhast": "^4.82.2",
"hhvm/hhvm-autoload": "^3.1.6",
"hhvm/type-assert": "^4.1.2",
"hhvm/hsl": "^4.41"
},
"scripts": {
"check": [
"@type-check",
"@lint",
"@test"
],
"lint": "hhast-lint -v src/",
"test": "hacktest tests/",
"type-check": "hh_client src/"
}
}