-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 2.22 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 2.22 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
{
"name": "@conga/framework-security",
"version": "2.1.1",
"description": "Conga.js security bundle",
"directories": {
"test": "test"
},
"main": "index.js",
"scripts": {
"test": "npm run test_all",
"test_all": "npm run test_provider && npm run test_auth && npm run test_session_realms",
"test_auth": "npm run test_auth_form",
"test_auth_form": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/authenticators/Auth_Http_Form_Spec.js",
"test_session_realms": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/SessionRealmsSpec.js",
"test_provider": "npm run test_provider_all_memory && npm run test_provider_all_chain && npm run test_provider_bass_bcrypt",
"test_provider_all_memory": "npm run test_provider_memory_text && npm run test_provider_memory_text && npm run test_provider_memory_text_encoded && npm run test_provider_memory_bcrypt",
"test_provider_memory_text": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/providers/InMemory_Text_Spec.js",
"test_provider_memory_text_encoded": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/providers/InMemory_Text_Encoded_Spec.js",
"test_provider_memory_bcrypt": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/providers/InMemory_Bcrypt_Spec.js",
"test_provider_all_chain": "npm run test_provider_chain_memory",
"test_provider_chain_memory": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/providers/Chain_InMemory_Spec.js",
"test_provider_bass_bcrypt": "./node_modules/jasmine/bin/jasmine.js spec/firewall-spec/providers/Bass_Bcrypt_Spec.js"
},
"repository": {
"type": "git",
"url": "git://github.com/congajs/conga-security.git"
},
"keywords": [],
"author": {
"name": "Anthony Matarazzo",
"email": "email@anthonymatarazzo.com"
},
"license": "MIT",
"dependencies": {
"@conga/annotations": "~1.0.4",
"bcrypt": "^5.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@conga/framework": "~2.1.1",
"@conga/framework-bass": "~2.0.0",
"@conga/framework-session": "~2.1.0",
"session-file-store": "^1.1.2",
"bass-nedb": "latest",
"jasmine": "^3.6.4",
"request": "^2.88.2",
"should": "^11.2.1"
},
"readmeFilename": "README.md"
}