-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.21 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.21 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
{
"name": "ng-upload-chunked",
"version": "1.0.6",
"description": "Php implementation of the file chunked upload for the angular directive ng-file-upload",
"scripts": {
"lint": "./vendor/bin/phpcs --standard=psr2 src/",
"test": "./vendor/bin/peridot test/",
"test:ci": "npm run lint && ./vendor/bin/peridot test/",
"test:coverage": "./vendor/bin/peridot test/ -c peridot.config.php --reporter text-code-coverage",
"test:coverage:html": "./vendor/bin/peridot test/ -c peridot.config.php --reporter html-code-coverage",
"install:composer": "curl -sS https://getcomposer.org/installer | php",
"install:vendor": "php composer.phar install",
"generate:doc": "./vendor/bin/phpdoc-md generate ./src > API.md"
},
"keywords": [
"ng-file-upload",
"upload",
"chunked",
"php"
],
"author": "Jose De Gouveia <dhgouveia@hotmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/hgouveia/ng-upload-chunked"
},
"bugs": {
"url": "https://github.com/hgouveia/ng-upload-chunked/issues"
},
"homepage": "https://github.com/hgouveia/ng-upload-chunked",
"license": "MIT"
}