-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "extras",
"version": "1.0.3",
"description": "Collection of chainable high-order functions to abstract and manipulate PHP types",
"scripts": {
"update": "composer dump-autoload",
"test": "./vendor/bin/peridot tests/ -c peridot.config.php",
"lint": "./vendor/bin/phpcs --standard=PSR2 ./src",
"lint:fix": "./vendor/bin/phpcbf --standard=PSR2 ./src",
"test:coverage": "./vendor/bin/peridot tests/ -c peridot.config.php --reporter text-code-coverage",
"test:coverage:html": "./vendor/bin/peridot tests/ -c peridot.config.php --reporter html-code-coverage",
"apigen": "vendor/bin/apigen generate src --destination api-docs",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"utility",
"PHP",
"type-manipulation",
"functional-programming",
"chainable",
"array-utils",
"data-structures",
"map-filter-reduce",
"fluent-interface",
"javascript-style",
"performance-optimizations",
"high-order-functions"
],
"author": "",
"license": "MIT",
"dependencies": {
"gfm": "0.0.1"
}
}