forked from genieacs/genieacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "genieacs",
"version": "1.1.0-alpha",
"description": "A blazing fast TR-069 auto configuration server (ACS) built with Node.js, Redis, and MongoDB",
"repository": {
"type": "git",
"url": "https://github.com/zaidka/genieacs.git"
},
"keywords": [
"TR-069",
"CWMP",
"ACS"
],
"author": "Zaid Abdulla",
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"preferGlobal": true,
"directories": {
"test": "test",
"bin": "bin"
},
"dependencies": {
"later": "^1.2.0",
"libxmljs": "^0.18.0",
"redis": "^2.6.2",
"hiredis": "^0.5.0",
"mongodb": "^2.2.4"
},
"devDependencies": {
"coffee-script": "^1.10.0"
},
"engines": {
"node": ">=4.4.0 <5.0"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "coffee -cb lib/*.coffee test/*.coffee tools/*.coffee",
"configure": "cp ./config/config-sample.json ./config/config.json; cp ./config/parameters-sample.json ./config/parameters.json; cp ./config/custom_commands-sample.json ./config/custom_commands.json; cp ./config/auth-sample.js ./config/auth.js",
"install": "npm run configure",
"test": "node test"
}
}