-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.67 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
88
89
90
91
92
93
94
95
{
"bugs": {
"url": "http://www.s2way.com/waferpie/issues",
"email": "[email protected]"
},
"description": "The official S2Way Framework for Node.js.",
"engines": {
"node": ">=0.8.8"
},
"homepage": "http://www.s2way.com/waferpie",
"keywords": [
"s2way",
"framework",
"waferpie",
"request",
"view",
"controller"
],
"main": "./dist/src/WaferPie.js",
"license": "Apache2",
"name": "waferpie",
"dependencies": {
"better-require": "0.0.3",
"chalk": "^0.5.1",
"coffee-script": "^1.8.0",
"couchbase": "^2.0.8",
"elastic": "^0.1.10",
"elastic.js": "^1.2.0",
"elasticsearch": "^2.4.0",
"moment": "~2.8.3",
"mysql": "^2.4.2",
"node-uuid": "^1.4.1",
"o2.debug": "^0.2.5",
"textchocolate": "^0.1.1",
"underscore": "^1.7.0",
"winston": "^0.7.3",
"xml2js": "^0.4.4",
"xmlbuilder": "^2.4.4"
},
"devDependencies": {
"blanket": "^1.1.6",
"coffeelint": "^1.6.0",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-jslint": "^1.1.12",
"grunt-mocha-test": "^0.11.0",
"jslint": "^0.5.2",
"karma": "^0.12.21",
"karma-coverage": "^0.2.6",
"karma-mocha": "^0.1.7",
"load-grunt-tasks": "^0.6.0",
"mocha": "1.13.0",
"should": "^4.0.4",
"travis-cov": "^0.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/s2way/waferpie.git"
},
"version": "0.9.15",
"scripts": {
"preinstall": "npm install -g coffee-script",
"postinstall": "rm -rf dist; mkdir -p dist; cp -r server/* dist/ && find dist -type f -iname '*.coffee' -delete; coffee --compile --output dist server",
"pretest": "node_modules/.bin/coffeelint server",
"test": "node_modules/.bin/mocha server/test --recursive -R progress --compilers coffee:coffee-script/register ; node_modules/.bin/mocha server/test --recursive -R html-cov -r blanket --compilers coffee:coffee-script/register > report.html",
"posttest": "node_modules/.bin/mocha server/test --recursive -r blanket -R travis-cov --compilers coffee:coffee-script/register"
},
"contributors": [
{
"name": "Juliano Lazzarotto",
"email": "[email protected]"
},
{
"name": "Davi Gabriel da Silva",
"email": "[email protected]"
}
],
"readme": "Please reade the README.md file.",
"readmeFilename": "README.md",
"_id": "[email protected]",
"_from": "waferpie@",
"config": {
"blanket": {
"loader": "./node-loaders/coffee-script",
"pattern": "server/src",
"data-cover-never": "node_modules"
},
"travis-cov": {
"threshold": 97,
"removeKey": "branchFcn"
}
}
}