-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "rai",
"private": true,
"dependencies": {
"body-parser": "^1.15.1",
"express": "^4.13.4",
"express-fileupload": "0.0.6",
"moment-timezone": "^0.5.11",
"morgan": "^1.7.0",
"randomstring": "^1.1.5",
"socket.io": "^1.4.6"
},
"version": "0.0.7",
"description": "router agent interface",
"main": "dist/index.js",
"devDependencies": {
"coffee-script": "^1.12.2",
"coffeescript-concat": "^1.0.14"
},
"scripts": {
"clean": "rm -rf dist",
"precompile": "mkdir dist && coffeescript-concat -I core -I core/Utils -o dist/precompile.coffee",
"pack": "cat dist/precompile.coffee index.coffee > dist/index.coffee && rm dist/precompile.coffee && coffee -c dist/index.coffee && rm dist/index.coffee",
"build": "npm run clean && npm run precompile && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rabrux/rai.git"
},
"keywords": [
"agent",
"router",
"interface"
],
"author": {
"name": "rabrux",
"email": "rabrux@alchimia.mx"
},
"maintainers": [
{
"name": "rabrux",
"email": "rabrux@alchimia.mx"
}
],
"license": "MIT",
"homepage": "https://github.com/rabrux/rai#readme"
}