-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
138 lines (138 loc) · 4.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "PiPo",
"license": {
"type": "AGPL-3.0",
"url": "http://www.gnu.org/licenses/agpl-3.0.en.html"
},
"author": "Philip Hutchins",
"email": "[email protected]",
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "NODE_ENV=test ./node_modules/.bin/mocha test/** client/test/** --recursive",
"coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"linter": "jshint --config .jshintrc ./main.js ./server ./client/electronClient.js ./client/js ./client/views ./test || true",
"build": "browserify client/js/network/socketClient.js -s pipo -o client/js/bundle.js",
"packager": "NODE_ENV=production ./node_modules/electron-packager/cli.js . --out ./packages --all --overwrite",
"builder": "node_modules/.bin/build --mac --linux --win",
"make-docs": "mkdir -p ./jsdoc && rm -r ./jsdoc && ./node_modules/.bin/jsdoc main.js client/js server -r -R README.md -c .jsdoc.json -u ./doc --verbose -d ./jsdoc && cp -r doc/assets jsdoc/assets",
"publish-docs": "npm run make-docs && node script/publishdoc.js",
"start": "node ./main.js",
"start-dev": "nodemon main",
"setup": "node ./scripts/setup.js",
"start-client": "electron ."
},
"directories": {
"test": "test",
"client": "client",
"server": "server",
"output": "dist",
"buildResources": "build"
},
"contributors": [
{
"name": "Rob Riddle",
"email": "[email protected]",
"url": "https://github.com/unusualbob"
},
{
"name": "Pat Riley",
"email": "[email protected]"
}
],
"version": "0.1.0",
"description": "Encrypted chat server/client",
"main": "main.js",
"mac": {
"icon": "public/img/pipo.icns"
},
"build": {
"appId": "pipo",
"category": "chat",
"asar": false,
"directories": {
"output": "dist",
"buildResources": "build"
},
"mac": {
"icon": "public/img/pipo.icns"
},
"linux": {
"maintainer": "Philip Hutchins"
}
},
"dependencies": {
"async": "^0.9.0",
"attempt": "^1.0.1",
"bcrypt-nodejs": "0.0.3",
"binaryjs": "^0.2.1",
"body-parser": "^1.12.4",
"browserify": "^13.0.1",
"btoa": "^1.1.2",
"crypto": "0.0.3",
"crypto-browserify": "^3.11.0",
"delivery": "0.0.4",
"dotenv": "^2.0.0",
"electron-pug": "^1.5.1",
"exists": "^1.0.0",
"expect.js": "^0.3.1",
"express": "^4.14.0",
"flip-stream-js": "^0.1.1",
"highlight": "^0.2.3",
"jasmine-node": "^1.14.5",
"jquery": "^2.2.4",
"kbpgp": "^2.0.11",
"kerberos": "0.0.18",
"marked": "^0.3.3",
"md5": "^1.0.0",
"mongoose": "^4.6.1",
"morgan": "^1.5.3",
"node-notifier": "^4.2.1",
"nonce": "^1.0.3",
"passport": "^0.3.2",
"passport-keyverify": "0.0.3",
"passport-publickey": "^1.0.3",
"progressbar.js": "^1.0.1",
"pug": "^2.0.0-beta6",
"querystring": "^0.2.0",
"requirejs": "^2.1.17",
"serve-favicon": "^2.2.1",
"should": "^7.0.2",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"socket.io-stream": "^0.9.0",
"stream": "0.0.2",
"stream-browserify": "^2.0.1",
"through": "^2.3.8",
"ursa": "^0.9.4",
"winston": "^1.0.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"electron": "^1.3.1",
"electron-builder": "^5.34.1",
"electron-packager": "^7.7.0",
"eslint": "^2.8.0",
"eslint-config-defaults": "^7.0.0",
"eslint-plugin-filenames": "^0.2.0",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0",
"grunt-electron": "^2.0.1",
"grunt-env": "^0.4.4",
"grunt-jasmine-node-coverage": "^0.4.1",
"grunt-jslint": "^1.1.14",
"istanbul": "^0.4.2",
"jasmine": "^2.4.1",
"jquery": "^2.2.0",
"jsdoc": "^3.4.0",
"jshint": "^2.9.2",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.1.0",
"mocha-phantomjs-istanbul": "0.0.2",
"sinon": "^1.17.4",
"supertest": "^1.2.0",
"uglify-js": "^2.6.2"
}
}