-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1012 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1012 Bytes
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
{
"name": "tala",
"version": "1.0.3",
"description": "Self hosted commenting platform for node.",
"main": "tala.js",
"homepage": "https://github.com/simme/node-tala",
"scripts": {
"start": "node tala.js",
"test": "node -e \"require('grunt').tasks(['test']);\"",
"test-all": "node -e \"require('grunt').tasks(['test-all']);\"",
"prepush": "npm test"
},
"keywords": [
"comments",
"level",
"blog"
],
"author": "Simon Ljungberg <hi@iamsim.me>",
"license": "MIT",
"dependencies": {
"JSONStream": "~0.10.0",
"MD5": "~1.2.0",
"akismet": "0.0.10",
"hapi": "~8.0.0",
"joi": "^6.3.0",
"jsdom": "~0.8.11",
"leveldown": "~0.10.2",
"levelup": "~0.18.2",
"lodash": "~2.4.1",
"nodemailer": "~0.6.0",
"sanitize-html": "^1.6.1",
"uglifyjs": "^2.4.10",
"ws": "~0.4.31"
},
"devDependencies": {
"grunt": "^0.4.5",
"husky": "^0.7.0",
"istanbul": "^0.3.13",
"lintlovin": "^1.15.1",
"mocha": "^2.2.4"
}
}