-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "yaktor-auth",
"version": "0.5.0-pre.0",
"license": "Apache-2.0",
"dependencies": {
"async": "2.0.0-rc.5",
"commander": "2.9.0",
"fs-extra": "0.30.0"
},
"devDependencies": {
"bcrypt": "0.8.6",
"body-parser": "1.15.0",
"connect-ensure-login": "0.1.1",
"connect-flash": "0.1.1",
"ejs": "2.4.1",
"express": "4.13.4",
"express-session": "1.13.0",
"grunt": "1.0.1",
"grunt-bump": "0.8.0",
"grunt-cli": "1.2.0",
"grunt-git": "1.0.0",
"grunt-shell": "1.3.0",
"jade": "1.11.0",
"load-grunt-tasks": "3.5.0",
"lodash": "4.13.1",
"mocha": "2.4.5",
"mockgoose": "6.0.3",
"mongoose": "4.4.17",
"mongoose-shortid-nodeps": "0.6.5",
"node-uuid": "1.4.7",
"nodemailer": "2.3.2",
"oauth2orize": "1.2.2",
"passport": "0.3.2",
"passport-anonymous": "1.0.1",
"passport-http": "0.3.0",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
"passport-oauth2-client-password": "0.1.2",
"passport-oauth2-public-client": "0.1.0",
"proxyquire": "1.7.4",
"request-context": "0.1.6",
"semver": "5.2.0",
"standard": "8.0.0",
"supertest-session": "2.0.1",
"winston": "2.2.0",
"yaktor": "0.59.x",
"yaktor-lang": "0.53.x"
},
"scripts": {
"patch": "grunt release-patch",
"minor": "grunt release-minor",
"copy-dsls": "mkdir -p .tmp && rm -f .tmp/*.yc .tmp/*.ydm .tmp/*.x && cp bin/static/secure/*.x .tmp && for dsl in $(ls .tmp/*.x); do mv $dsl ${dsl%.x}; done",
"gen-src": "npm run copy-dsls && find . test .tmp node_modules/yaktor -maxdepth 1 -name '*.yc' -o -name '*.ydm' -follow | xargs yaktor-lang",
"lint": "standard --verbose",
"format": "standard --fix",
"test": "mocha -R spec test/*.test.js && npm run lint",
"ci": "npm run test"
},
"author": {
"name": "jonathan.kamke",
"email": "jonathan.kamke@scispike.com"
},
"homepage": "https://github.com/SciSpike/engine-auth",
"repository": {
"type": "git",
"url": "git@github.com:SciSpike/yaktor-auth.git"
},
"engines": {
"node": ">=4.0.x"
},
"bin": {
"yaktor-auth": "./bin/yaktor-auth.js"
}
}