-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 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
{
"name": "salad",
"main": "./index.js",
"version": "3.1.1",
"description": "",
"homepage": "http://github.com/komola/salad",
"author": "Sebastian Hoitz <[email protected]>",
"keywords": [
"node"
],
"maintainers": [
{
"name": "Sebastian Hoitz",
"email": "[email protected]"
}
],
"contributors": [],
"licenses": [
{
"type": "MIT",
"url": "http://mths.be/mit"
}
],
"bugs": {
"url": ""
},
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": "8",
"npm": "5"
},
"dependencies": {
"async": "~2.6.0",
"barista": "~0.5.3",
"body-parser": "~1.18.2",
"chokidar": "^2.0.4",
"cli-table": "~0.3.1",
"coffee-script": "~1.12.0",
"cookie-parser": "~1.4.3",
"emailjs": "~0.3.12",
"express": "~4.16.2",
"findit2": "~2.2.3",
"handlebars": "~4.0.11",
"lodash": "^4.17.11",
"method-override": "~2.3.10",
"morgan": "~1.9.0",
"multer": "~1.3.0",
"pg": "~6.4.2",
"pg-hstore": "~2.3.1",
"pg-native": "~2.2.0",
"require-all": "~2.2.0",
"response-time": "~2.3.2",
"sequelize": "~3.31.1",
"sequelize-cli": "~1.2.0",
"underscore.inflections": "~0.2.1",
"underscore.string": ">= 3.0.2",
"validator": "~2.1.0",
"winston": "~2.4.0"
},
"devDependencies": {
"chai": "~4.1.2",
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-coffee": "~0.12.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-uglify": "~0.7.0",
"mocha": "~4.1.0",
"semver": "~5.4.1",
"should": "~13.2.1",
"sinon": "~4.1.5",
"superagent": "~3.8.2"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require should --require coffee-script/register --reporter spec --timeout 2000 --growl ./test/server.coffee $(find test -name \"*Test.coffee\")"
}
}