-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.12 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.12 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "prismy-session-strategy-signed-cookie",
"version": "0.1.4",
"description": "Signed cookie session strategy for prismy",
"keywords": [
"prismy",
"session",
"cookie",
"signed"
],
"author": "Junyoung Choi <rokt33r.choi@gmail.com>",
"homepage": "https://github.com/prismyland/prismy-session-strategy-signed-cookie",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prismyland/prismy-session-strategy-signed-cookie.git"
},
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.build.json",
"lint": "prettier --check src/**/*.ts examples/*/src/**/*.ts",
"format": "prettier --write src/**/*.ts examples/*/src/**/*.ts",
"test": "npm run lint && npm run test-type && npm run test-coverage",
"test-api": "ava --verbose",
"test-type": "tsc --noEmit",
"test-coverage": "nyc ava && nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"bugs": {
"url": "https://github.com/prismyland/prismy-session-strategy-signed-cookie/issues"
},
"devDependencies": {
"@types/cookie-signature": "^1.0.3",
"@types/got": "^9.4.4",
"@types/node": "^12.0.2",
"@types/tough-cookie": "^2.3.5",
"ava": "^2.2.0",
"codecov": "^3.5.0",
"got": "^9.6.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"prismy": "^0.13.0",
"prismy-cookie": "^0.4.1",
"prismy-session": "^0.1.1",
"prismy-test-server": "^0.4.1",
"rimraf": "^2.6.3",
"tough-cookie": "^3.0.1",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"prismy": ">= 0.11.0 < 1",
"prismy-session": ">= 0.1.1 < 1",
"prismy-cookie": ">= 0.4.1 < 1"
},
"ava": {
"compileEnhancements": false,
"files": [
"specs/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"cookie-signature": "^1.1.0"
}
}