-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.92 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
{
"name": "processgraphql",
"version": "2.0.0",
"description": "GraphQL for ProcessWire",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "composer exec -v \"phpunit --bootstrap test/bootstrap.php --exclude-group performance test\"",
"test:cover": "phpdbg -qrr vendor/phpunit/phpunit/phpunit --bootstrap test/bootstrap.php --coverage-html coverage --whitelist src test",
"test:performance:totalCount": "composer exec -v \"phpunit --bootstrap test/bootstrap.php test/Performance/DbQueryCountTest.php\"",
"test:performance:longCount": "composer exec -v \"phpunit --bootstrap test/bootstrap.php test/Performance/DbLongQueryCountTest.php\"",
"test:performance:shortCount": "composer exec -v \"phpunit --bootstrap test/bootstrap.php test/Performance/DbShortQueryCountTest.php\"",
"test:performance": "npm-run-all test:performance:*",
"posttest": "php test/cleanup.php",
"release": "semantic-release",
"postinstall": "composer install",
"start:client": "php -S 127.0.0.1:8090 test/client.php",
"start:server": "php -S 127.0.0.1:8091 test/server.php",
"start": "npm-run-all --parallel start:client start:server",
"prettier": "prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dadish/ProcessGraphQL.git"
},
"keywords": [
"GraphQL",
"ProcessWire"
],
"author": "Nurguly Ashyrov <nurguly.ashyorov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dadish/ProcessGraphQL/issues"
},
"homepage": "https://github.com/dadish/ProcessGraphQL#readme",
"devDependencies": {
"@prettier/plugin-php": "^0.18.9",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"archiver": "^5.3.1",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3"
}
}