forked from OWASP/owasp-summit-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (30 loc) · 817 Bytes
/
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
{
"name": "website",
"version": "0.0.5",
"description": "Summit 2017 website",
"main": "index.js",
"scripts": {
"build-data": "coffee ./src/server/build-data.coffee",
"test": "node ./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --recursive -R list src/server/test",
"test-watch": "npm test -- --watch",
"start": "coffee src/server/main.coffee"
},
"author": "",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.18.8",
"coffee-script": "^1.12.4",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-jade": "^1.1.0",
"gulp-less": "^3.3.0",
"gulp-notify": "^3.0.0",
"gulp-shell": "^0.6.3"
},
"dependencies": {
"express": "^4.15.3",
"fluentnode": "^0.6.5",
"js-yaml": "^3.8.4",
"mocha": "^3.4.2"
}
}