This repository was archived by the owner on Sep 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.96 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.96 KB
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
{
"name": "pingr",
"version": "0.0.1",
"description": "The performance improvement plan generator",
"main": "script.js",
"scripts": {
"prestart": "rimraf dist/*",
"start": "brunch watch --server",
"build": "brunch build --production",
"postbuild": "ncp deploy/appserver/.foreverignore dist/.foreverignore",
"postinstall": "npm run build",
"watch": "brunch watch",
"debug": "node --inspect --debug-brk server.js",
"pretest": "eslint --ignore-path .gitignore --ext .js app server",
"test": "mocha test/**/*.js",
"lint": "jshint --show-non-errors app",
"test:email": "node deploy/appserver/emailReminders.js test"
},
"repository": {
"type": "git",
"url": "https://github.com/rw251/rw251.github.io.git"
},
"author": "Richard Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/rw251/rw251.github.io/issues"
},
"homepage": "https://pingr-demo.herokuapp.com",
"devDependencies": {
"auto-reload-brunch": "^2.7.1",
"babel-brunch": "^6.1.1",
"babel-preset-env": "^1.6.1",
"brunch": "^2.10.12",
"cp": "^0.2.0",
"decompress": "^4.2.0",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-import": "^2.8.0",
"jade-brunch": "^2.8.0",
"javascript-brunch": "^2.10.0",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.2",
"sass-brunch": "^2.6.3",
"sinon": "^4.1.3",
"tar-fs": "^1.15.3",
"uglify-js": "^2.8.29"
},
"dependencies": {
"async": "^2.6.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"bootstrap": "^3.3.7",
"clipboard": "^1.7.1",
"compression": "^1.7.0",
"connect-flash": "^0.1.1",
"corejs-typeahead": "^1.2.1",
"cors": "^2.8.4",
"csv-parser": "^1.12.1",
"datatables.net": "git+https://git@github.com/rw251/DataTables.git",
"datatables.net-bs": "git+https://git@github.com/rw251/Dist-DataTables-Bootstrap.git",
"datatables.net-buttons": "git+https://git@github.com/rw251/Dist-DataTables-Buttons.git",
"datatables.net-buttons-bs": "git+https://git@github.com/rw251/Dist-DataTables-Buttons-Bootstrap.git",
"debug": "^2.6.9",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"file-saver": "^1.3.8",
"floatthead": "^2.1.2",
"forever": "^0.15.3",
"highcharts": "^4.2.7",
"jade": "^1.11.0",
"jquery": "^1.12.4",
"jquery-sparkline": "^2.4.0",
"json2csv": "^3.11.5",
"jspdf": "^1.4.1",
"jspdf-autotable": "^2.3.4",
"mongoose": "^4.13.14",
"morgan": "^1.9.0",
"nodemailer": "^2.7.2",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"prompt": "^1.0.0",
"sendgrid": "^4.7.1",
"serve-favicon": "^2.5.0",
"textversionjs": "^1.1.3",
"uuid": "^3.3.2"
},
"engines": {
"node": "6.11.x"
}
}