package.json
2.3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"_args": [
[
"saslprep@1.0.3",
"/Users/hyunyeong/Desktop/WhereUr/WhereUR"
]
],
"_from": "saslprep@1.0.3",
"_id": "saslprep@1.0.3",
"_inBundle": false,
"_integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==",
"_location": "/saslprep",
"_optional": true,
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "saslprep@1.0.3",
"name": "saslprep",
"escapedName": "saslprep",
"rawSpec": "1.0.3",
"saveSpec": null,
"fetchSpec": "1.0.3"
},
"_requiredBy": [
"/mongodb"
],
"_resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz",
"_spec": "1.0.3",
"_where": "/Users/hyunyeong/Desktop/WhereUr/WhereUR",
"author": {
"name": "Dmitry Tsvettsikh",
"email": "me@reklatsmasters.com"
},
"bugs": {
"url": "https://github.com/reklatsmasters/saslprep/issues"
},
"dependencies": {
"sparse-bitfield": "^3.0.3"
},
"description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.",
"devDependencies": {
"@nodertc/eslint-config": "^0.2.1",
"eslint": "^5.16.0",
"jest": "^23.6.0",
"prettier": "^1.14.3"
},
"engines": {
"node": ">=6"
},
"eslintConfig": {
"extends": "@nodertc",
"rules": {
"camelcase": "off",
"no-continue": "off"
},
"overrides": [
{
"files": [
"test/*.js"
],
"env": {
"jest": true
},
"rules": {
"require-jsdoc": "off"
}
}
]
},
"homepage": "https://github.com/reklatsmasters/saslprep#readme",
"jest": {
"modulePaths": [
"<rootDir>"
],
"testMatch": [
"**/test/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"keywords": [
"sasl",
"saslprep",
"stringprep",
"rfc4013",
"4013"
],
"license": "MIT",
"main": "index.js",
"name": "saslprep",
"repository": {
"type": "git",
"url": "git+https://github.com/reklatsmasters/saslprep.git"
},
"scripts": {
"gen-code-points": "node generate-code-points.js > code-points.mem",
"lint": "npx eslint --quiet .",
"test": "npm run lint && npm run unit-test",
"unit-test": "npx jest"
},
"version": "1.0.3"
}