7fife-backend/node_modules/saslprep/package.json

73 lines
1.5 KiB
JSON
Raw Normal View History

2024-03-07 13:01:44 +00:00
{
2024-03-11 12:29:54 +00:00
"name": "saslprep",
"version": "1.0.3",
"description": "SASLprep: Stringprep Profile for User Names and Passwords, rfc4013.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit-test",
"lint": "npx eslint --quiet .",
"unit-test": "npx jest",
"gen-code-points": "node generate-code-points.js > code-points.mem"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/reklatsmasters/saslprep.git"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"keywords": [
"sasl",
"saslprep",
"stringprep",
"rfc4013",
"4013"
],
"author": "Dmitry Tsvettsikh <me@reklatsmasters.com>",
"license": "MIT",
2024-03-07 13:01:44 +00:00
"bugs": {
"url": "https://github.com/reklatsmasters/saslprep/issues"
},
2024-03-11 12:29:54 +00:00
"engines": {
"node": ">=6"
2024-03-07 13:01:44 +00:00
},
2024-03-11 12:29:54 +00:00
"homepage": "https://github.com/reklatsmasters/saslprep#readme",
2024-03-07 13:01:44 +00:00
"devDependencies": {
"@nodertc/eslint-config": "^0.2.1",
"eslint": "^5.16.0",
"jest": "^23.6.0",
"prettier": "^1.14.3"
},
2024-03-11 12:29:54 +00:00
"dependencies": {
"sparse-bitfield": "^3.0.3"
2024-03-07 13:01:44 +00:00
},
"eslintConfig": {
"extends": "@nodertc",
"rules": {
"camelcase": "off",
"no-continue": "off"
},
"overrides": [
{
"files": [
"test/*.js"
],
"env": {
"jest": true
},
"rules": {
"require-jsdoc": "off"
}
}
]
},
"jest": {
"modulePaths": [
"<rootDir>"
],
"testMatch": [
"**/test/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
2024-03-11 12:29:54 +00:00
}
2024-03-07 13:01:44 +00:00
}