-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 924 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 924 Bytes
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": "authress-wordpress-plugin",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "./composer.phar install --prefer-dist --optimize-autoloader",
"build": "./composer.phar install --prefer-dist --optimize-autoloader",
"start": "sudo docker-compose up",
"lint": "./vendor/bin/phpcs -i && ./vendor/bin/phpcs -s .",
"kill": "sudo docker-compose rm --stop --force",
"cli": "sudo docker-compose run wordpress /bin/bash",
"package": "zip authress.zip -r ."
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@authress/login": "^2.5"
},
"devDependencies": {
"@authress/sdk": "^3.0",
"base64url": "^3.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"header-case-normalizer": "^1.0.3",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"nodemon": "^2.0.4"
}
}