-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 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
{
"name": "@hicsail/authentication",
"version": "0.0.1",
"description": "The authentication microservice provides authentication and authorization for multiple SAIL projects.",
"scripts": {
"build": "npm run build --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"prettier:fix": "npm run prettier:fix --workspaces --if-present",
"start": "npm run start --workspaces --if-present",
"start:dev": "npm run start:dev --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"workspaces": [
"./packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hicsail/authentication-service.git"
},
"author": "Boston University Software & Application Innovation Lab <[email protected]> (https://sail.bu.edu/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hicsail/authentication-service/issues"
},
"homepage": "https://github.com/hicsail/authentication-service#readme",
"type": "module"
}