-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 1.85 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
{
"name": "pinitto.me",
"version": "0.9.2",
"description": "Open source corkboard-type application",
"main": "index.js",
"dependencies": {
"async": "~0.2.9",
"captcha": "0.0.4",
"cloneextend": "0.0.3",
"colors": "~0.6.2",
"connect": "~2.8.1",
"connect-mongo": "~0.8.0",
"connect-sts": "~0.4.0",
"cookie": "0.0.5",
"crypto": "0.0.3",
"debug": "^1.0.4",
"ejs-locals": "~1.0.2",
"express": "^3.16.7",
"express-force-domain": "0.0.6",
"express-validator": "~0.3.2",
"forever": "~0.10.11",
"helmet": "~0.1.2",
"mongodb": "^2.2.10",
"read-package-json": "~0.2.2",
"recaptcha": "~1.2.0",
"requirejs": "~2.1.9",
"socket.io": "~0.9.16",
"validator": "~0.4.28"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-mocha-cli": "~1.5.0",
"grunt-nsp-package": "0.0.5",
"massah": "*",
"requirejs": "~2.1.4"
},
"scripts": {
"start": "forever start -a -p . -l logs/forever.log -o logs/pinitto.me.out.log -e logs/pinitto.me.err.log index.js",
"stop": "forever stop index.js",
"clean": "forever cleanlogs index.js",
"restart": "forever restart index.js",
"test": "mongo test --eval \"db.dropDatabase();\" &&./node_modules/.bin/massah test",
"postinstall": "git submodule update --init && ./node_modules/.bin/grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/pinittome/pinitto.me"
},
"keywords": [
"corkboard",
"open",
"source",
"node.js",
"websockets",
"socket.io"
],
"author": "Steven Lloyd Watkin <lloyd@evilprofessor.co.uk>",
"license": "Apache 2.0",
"subdomain": "pinittome",
"domains": [
"www.pinitto.me",
"pinitto.me"
],
"engines": {
"node": ">=0.8.x"
}
}