This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.25 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
{
"name": "nodulator",
"version": "0.2.2",
"dependencies": {
"assert": "^1.3.0",
"async": "1.5.2",
"body-parser": "1.15.0",
"commander": "^2.9.0",
"connect-redis": "^3.0.0",
"cookie-parser": "1.4.1",
"debug": "2.2.0",
"express": "4.13.4",
"express-session": "1.13.0",
"hacktiv": "0.0.4",
"istanbul": "^0.4.3",
"livescript": "1.4.0",
"mocha": "2.4.5",
"mongous": "0.2.7",
"mysql": "2.10.2",
"nodulator-account": "file:./src/Modules/Nodulator-Account",
"nodulator-angular": "file:./src/Modules/Nodulator-Angular",
"nodulator-assets": "file:./src/Modules/Nodulator-Assets",
"nodulator-socket": "file:./src/Modules/Nodulator-Socket",
"nodulator-view": "file:./src/Modules/Nodulator-View",
"polyparams": "0.0.4",
"prelude-ls": "1.1.2",
"q": "1.4.1",
"redis": "^2.2.5",
"repl.history": "0.1.3",
"rest": "^1.3.1",
"rest-js": "^1.1.2",
"superagent": "1.8.3",
"supertest": "1.2.0",
"underscore": "1.8.3",
"validator": "~3.27.0"
},
"description": "Complete NodeJS Framework for Restfull APIs",
"main": "index.js",
"bin": {
"N": "./bin/N",
"Console": "./bin/Console.ls"
},
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"livescript": "1.4.0",
"mocha": "~2.0.1"
},
"scripts": {
"compile": "lsc -c -o lib src",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --compilers ls:livescript test",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"clean": "rm -rf ./coverage ./lib/*",
"test": "NODULATOR_COVERAGE=1 npm run compile && npm run test-unit && npm run coverage && npm run clean",
"release": "./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/Champii/Nodulator.git"
},
"keywords": [
"REST",
"API",
"easy",
"express",
"ORM",
"routing",
"framework",
"nodejs",
"coffee",
"coffeescript",
"livescript",
"reactive",
"programming",
"promises"
],
"author": "Champii <[email protected]>",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/Champii/Nodulator/issues"
}
}