-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.86 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@author.io/iam",
"version": "1.0.0-alpha.6",
"description": "A Identification and Authorization Management library.",
"main": "src/index.js",
"module": "index.js",
"browser": "./index.js",
"directories": {
"lib": "src/lib"
},
"scripts": {
"start": "dev workspace",
"test": "npm run test:node && npm run test:deno && npm run test:browser && npm run report:syntax && npm run report:size",
"test:node": "dev test -rt node tests/*.js",
"test:node:sanity": "dev test -rt node tests/01-sanity.js",
"test:browser": "dev test -rt browser tests/*.js",
"test:deno": "dev test -rt deno tests/*.js",
"manually": "dev test -rt manual tests/*.js",
"build": "dev build",
"report:syntax": "dev report syntax --pretty",
"report:size": "dev report size ./.dist/**/*.js ./.dist/**/*.js.map",
"report:compat": "dev report compatibility ./src/**/*.js",
"report:preview": "npm pack --dry-run && echo \"==============================\" && echo \"This report shows what will be published to the module registry. Pay attention to the tarball contents and assure no sensitive files will be published.\""
},
"keywords": [
"iam",
"acl",
"authentication",
"authorization",
"auth",
"authz",
"management",
"rbac",
"oauth",
"oauth2",
"security",
"identification"
],
"author": {
"name": "Corey Butler",
"url": "https://github.com/coreybutler"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@author.io/dev": "^1.1.0"
},
"standard": {
"globals": [
"globalThis",
"window",
"global"
]
},
"dev": {
"verbose": true,
"replace": {
"<#REPLACE_VERSION#>": "package.version"
},
"alias": {
"@author.io/iam": "/app/.dist/iam/index.js",
"@author.io/iam-debug": "/app/.dist/iam-debug/index.js.map"
}
}
}