-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "npuser",
"version": "1.0.0",
"author": "Bryan Gilbert <[email protected]>",
"title": "npuser No Password User Authentication",
"keywords": [
"authentication",
"no password"
],
"description": "This project provides a service for other applications seeking easy to implement no password user authentication",
"contributors": [
"Bryan Gilbert <[email protected]>"
],
"related": [
"https://github.com/npuserauth/npuser-sendmail",
"https://github.com/npuserauth/npuser-client"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/npuserauth/npuser"
},
"bugs": {
"url": "https://github.com/npuserauth/npuser/issues"
},
"homepage": "https://npuser.org",
"scripts": {
"install": "npm run install:client && npm run install:server",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"test": "npm run test:client && npm run test:server",
"test:client": "cd client && npm run test",
"test:server": "cd server && npm run test",
"start": "echo 'cd deploy and see readme'",
"update:prod": "git pull && npm run build && npm run restart:client"
},
"scriptsComments": {
"run": "for dev and prod cd into the deployment directory and run scripts",
"install": "MUST run this on newly clone repo or to update packages",
"lint": "clean code",
"test": "run tests"
},
"devDependencies": {
}
}