-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
32 lines (32 loc) · 1.12 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
{
"name": "wp-simple-saml",
"version": "0.1.0",
"description": "WordPress plugin for integration with SAML SSO",
"scripts": {
"wp-env": "wp-env",
"dev": "wp-env start && npm run idp",
"stop": "wp-env stop && docker stop idp",
"cs": "vendor/bin/phpcs --standard=./vendor/humanmade/coding-standards/ruleset.xml .",
"precommit": "npm run cs",
"idp": "docker start idp || docker run --name=idp -p 8080:8080 -e SIMPLESAMLPHP_SP_ENTITY_ID=http://localhost:8888/ -e SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE=http://localhost:8888/sso/verify -e SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE=http://localhost:8888/sso/logout -d kenchan0130/simplesamlphp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanmade/wp-simple-saml.git"
},
"keywords": [
"wordpress",
"sso",
"saml"
],
"author": "Shady Sharaf <shady@sharaf.me>",
"license": "GPL3",
"bugs": {
"url": "https://github.com/humanmade/wp-simple-saml/issues"
},
"homepage": "https://github.com/humanmade/wp-simple-saml#readme",
"devDependencies": {
"@wordpress/env": "^10.16.0",
"husky": "^9.1.7"
}
}