@gcoredev/as-jwt 1.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "as-hmac-sha2",
3
+ "version": "1.0.2",
4
+ "description": "SHA-256, HMAC-SHA256, SHA-512 and HMAC-SHA512 for AssemblyScript.",
5
+ "main": "index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "asbuild:untouched": "asc assembly/index.ts --target debug",
9
+ "asbuild:optimized": "asc assembly/index.ts --target release",
10
+ "asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
11
+ "test": "asp --verbose",
12
+ "test:ci": "asp --summary"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/jedisct1/as-hmac-sha2.git"
17
+ },
18
+ "keywords": [
19
+ "assemblyscript",
20
+ "hmac",
21
+ "sha256",
22
+ "sha-256",
23
+ "sha512",
24
+ "sha-512"
25
+ ],
26
+ "author": "Frank Denis <npm@pureftpd.org>",
27
+ "license": "ISC",
28
+ "bugs": {
29
+ "url": "https://github.com/jedisct1/as-hmac/issues"
30
+ },
31
+ "homepage": "https://github.com/jedisct1/as-hmac#readme",
32
+ "devDependencies": {
33
+ "@assemblyscript/loader": "^0.21.3",
34
+ "@as-pect/cli": "^7.0.8",
35
+ "assemblyscript": "^0.21.3"
36
+ }
37
+ }
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@gcoredev/as-jwt",
3
+ "version": "1.0.0-alpha.2",
4
+ "description": "AssemblyScript package that provides simple jws handling for jwt tokens/",
5
+ "main": "assembly/index.ts",
6
+ "type": "module",
7
+ "scripts": {
8
+ "asbuild:untouched": "asc assembly/index.ts --target debug",
9
+ "asbuild:optimized": "asc assembly/index.ts --target release",
10
+ "asbuild": "npm run asbuild:untouched && npm run asbuild:optimized",
11
+ "test": "asp --verbose",
12
+ "test:ci": "asp --summary",
13
+ "prepare": "husky"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/G-Core/as-jwt.git"
18
+ },
19
+ "keywords": [
20
+ "assemblyscript",
21
+ "crypto",
22
+ "hmac",
23
+ "jwt",
24
+ "jws",
25
+ "sha256",
26
+ "sha512"
27
+ ],
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "registry": "https://registry.npmjs.org/"
31
+ },
32
+ "files": [
33
+ "assembly/*.*",
34
+ "modules/as-base64/assembly",
35
+ "modules/as-base64/README.md",
36
+ "modules/as-base64/package.json",
37
+ "modules/as-hmac-sha2/assembly",
38
+ "modules/as-hmac-sha2/README.md",
39
+ "modules/as-hmac-sha2/package.json",
40
+ "!assembly/__tests__/",
41
+ "!modules/as-base64/assembly/__tests__/",
42
+ "!modules/as-hmac-sha2/assembly/__tests__/",
43
+ "!index.js",
44
+ "README.md"
45
+ ],
46
+ "author": "Gordon Farquharson",
47
+ "license": "Apache-2.0",
48
+ "bugs": {
49
+ "url": "https://github.com/G-Core/as-jwt/issues"
50
+ },
51
+ "homepage": "https://github.com/G-Core/as-jwt#readme",
52
+ "devDependencies": {
53
+ "@as-pect/cli": "^8.0.1",
54
+ "@assemblyscript/loader": "^0.27.34",
55
+ "@semantic-release/changelog": "^6.0.3",
56
+ "assemblyscript": "^0.27.34",
57
+ "husky": "^9.0.11"
58
+ },
59
+ "dependencies": {
60
+ "assemblyscript-json": "^1.1.0"
61
+ }
62
+ }