forked from LeanKit-Labs/aspxauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "aspxauth",
"version": "1.1.2",
"description": "Verify and decrypt .NET's .ASPXAUTH cookie from node",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"format": "jscs --fix ./",
"lint": "eslint --fix ./",
"pretest": "npm run format && 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": "[email protected]",
"url": "https://github.com/prestaul"
},
{
"name": "Josh Bush",
"email": "[email protected]"
}
],
"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",
"dependencies": {
"bignum": "^0.12.5"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.7.0",
"eslint-config-leankit": "^3.0.0",
"jscs": "^3.0.7",
"mocha": "^3.1.2",
"nyc": "^8.3.0",
"sinon": "^1.17.6"
},
"nyc": {
"include": "src"
}
}