forked from genieacs/genieacs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "genieacs",
"version": "0.9.9",
"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": "AGPL3",
"readmeFilename": "README.md",
"preferGlobal": true,
"directories": {
"test": "test",
"bin": "bin"
},
"dependencies": {
"libxmljs": "~0.9.0",
"redis": "~0.10.1",
"hiredis": "~0.1.16",
"mongodb": "~1.4.4"
},
"devDependencies": {
"coffee-script": "~1.7.1"
},
"engines": {
"node": ">=0.10.0 <0.12"
},
"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; cp ./config/httpscert-sample.key ./config/httpscert.key; cp ./config/httpscert-sample.crt ./config/httpscert.crt",
"install": "npm run configure",
"test": "node test"
}
}