-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.8 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": "callsigns",
"version": "2.6.0",
"description": "Query the Canadian Amateur Radio Callsign Database",
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "jshint ./index.js",
"test": " casperjs test test/callsigns.test.js",
"postinstall": "cp -n config.json.example config.json||true"
},
"repository": {
"type": "git",
"url": "git://github.com/tcort/callsigns.git"
},
"keywords": [
"callsigns",
"ham",
"radio",
"amateur",
"callsign",
"database"
],
"author": "Thomas Cort <linuxgeek@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tcort/callsigns/issues"
},
"homepage": "https://github.com/tcort/callsigns#readme",
"dependencies": {
"bootstrap": "^3.3.7",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"express-package-json": "^1.0.2",
"file-stream-rotator": "0.1.0",
"handlebars-paginate": "^0.1.0",
"hbs": "^4.0.1",
"i18n": "^0.8.3",
"jquery": "^3.2.1",
"morgan": "^1.8.1",
"mysql": "^2.13.0",
"serve-favicon": "^2.4.2",
"ssi-logger": "^2.5.7",
"uuid": "^3.0.1"
},
"devDependencies": {
"casperjs": "^1.1.3",
"jshint": "^2.9.4",
"phantomjs-prebuilt": "^2.1.14"
},
"jshintConfig": {
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"globalstrict": true,
"immed": true,
"indent": 4,
"moz": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"trailing": true,
"undef": true,
"smarttabs": true,
"strict": true,
"validthis": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}