forked from oddnetworks/oddworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "odd-device-api",
"version": "1.7.1",
"description": "An example Oddworks API written in Express.js",
"main": "service.js",
"scripts": {
"dev": "nodemon index.js -e js,json",
"test": "npm run lint && npm run tape",
"tape": "tape 'test/**/*_test.js' | tap-spec",
"lint": "xo",
"start": "node index.js -e js,json",
"sec": "./node_modules/.bin/nsp check -o json --warn-only"
},
"engines": {
"npm": "2.11.x",
"node": "4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/oddnetworks/odd-api.git"
},
"author": "Odd Networks",
"bugs": {
"url": "https://github.com/oddnetworks/odd-api/issues"
},
"homepage": "https://github.com/oddnetworks/odd-api",
"dependencies": {
"@oddnetworks/seneca-odd-auth": "git+https://[email protected]/oddnetworks/seneca-odd-auth.git",
"@oddnetworks/seneca-odd-catalog": "git+https://[email protected]/oddnetworks/seneca-odd-catalog.git",
"@oddnetworks/seneca-odd-entitlement": "git+https://[email protected]/oddnetworks/seneca-odd-entitlement.git",
"@oddnetworks/seneca-odd-identity": "git+https://[email protected]/oddnetworks/seneca-odd-identity.git",
"async": "^1.4.2",
"bluebird": "^2.10.1",
"body-parser": "^1.14.1",
"boom": "^2.9.0",
"compression": "^1.5.2",
"deep-freeze": "0.0.1",
"dotenv": "^1.2.0",
"easyxml": "^1.0.0",
"express": "^4.13.3",
"express-real-ip": "^1.0.0",
"express-slash": "^2.0.1",
"filepath": "^1.0.0",
"glob": "^5.0.15",
"header-parser": "^1.0.0",
"hiredis": "^0.4.1",
"inflection": "^1.7.1",
"interpolate": "^0.1.0",
"jsonwebtoken": "^5.0.5",
"keymirror": "^0.1.1",
"lodash": "^3.10.1",
"lru-cache": "^4.0.0",
"mixpanel": "^0.3.1",
"moment": "^2.11.1",
"mongo-uri": "^0.1.2",
"morgan": "^1.6.1",
"opbeat": "^3.0.2",
"optimist": "^0.6.1",
"query-string": "^3.0.0",
"redis": "^2.4.2",
"redis-mock": "^0.5.1",
"seneca": "^1.0.0",
"seneca-mongo-store": "git+https://[email protected]/oddnetworks/seneca-mongo-store.git#106188f",
"seneca-redis-cache": "^0.2.0",
"universal-analytics": "^0.3.9",
"urijs": "^1.16.1"
},
"devDependencies": {
"mock-express-request": "^0.1.1",
"mock-express-response": "^0.1.1",
"nodemon": "^1.3.7",
"nsp": "^2.2.0",
"seneca-cache": "^0.1.4",
"seneca-mem-store": "^0.3.1",
"supertest": "^1.0.1",
"tap-spec": "^4.1.1",
"tape": "^4.0.1",
"xo": "^0.9.0"
},
"xo": {
"envs": [
"node",
"es6"
]
},
"license": "Apache-2.0"
}