-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (54 loc) · 1.14 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
{
"name": "paseto",
"version": "3.1.4",
"description": "PASETO for Node.js with no dependencies",
"keywords": [
"decode",
"decrypt",
"encrypt",
"local",
"paseto",
"public",
"sign",
"v1",
"v2",
"v3",
"v4",
"verify"
],
"homepage": "https://github.com/panva/paseto",
"repository": "panva/paseto",
"funding": "https://github.com/sponsors/panva",
"license": "MIT",
"author": "Filip Skokan <panva.ip@gmail.com>",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types/index.d.ts"
],
"scripts": {
"_format": "find lib types test -type f -name '*.ts' -o -name '*.mjs' -name '*.cjs' | xargs prettier",
"format": "npm run _format -- --write",
"format-check": "npm run _format -- --check",
"test": "ava",
"test-types": "tsd",
"watch": "ava --watch"
},
"ava": {
"files": [
"test/**/*.test.js"
]
},
"devDependencies": {
"@types/node": "^16.18.25",
"ava": "^5.2.0",
"prettier": "^2.8.8",
"sinon": "^11.1.2",
"tsd": "^0.28.1",
"typescript": "^3.9.10"
},
"engines": {
"node": ">=16.0.0"
}
}