-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "aspxauth",
"version": "3.0.0",
"description": "Verify and decrypt .NET's .ASPXAUTH cookie from node",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint --fix ./",
"pretest": "npm run lint",
"test": "npm run cover",
"test:only": "mocha spec/*.spec.js",
"test:watch": "npm run test:only -- -w",
"cover": "nyc -r text-summary -r html -- npm run test:only",
"cover:show": "open \"file://$PWD/coverage/index.html\""
},
"author": "LeanKit",
"contributors": [
{
"name": "Matt Dunlap",
"email": "matt.dunlap@leankit.com",
"url": "https://github.com/prestaul"
},
{
"name": "Josh Bush",
"email": "josh.bush@leankit.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/LeanKit-Labs/aspxauth.git"
},
"bugs": {
"url": "https://github.com/LeanKit-Labs/aspxauth/issues"
},
"homepage": "https://github.com/LeanKit-Labs/aspxauth#readme",
"keywords": [
".NET",
"authentication",
"auth",
".ASPXAUTH",
"FormsAuthentication"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-leankit": "^5.1.0",
"mocha": "^6.2.2",
"nyc": "^15.0.0",
"sinon": "^8.0.1"
},
"nyc": {
"include": "src"
}
}