-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "countdown",
"version": "0.0.0",
"description": "An anagram solver bearing no resemblance to the show on Channel 4 whatsoever",
"main": "server.js",
"scripts": {
"build": "gulp build",
"develop": "gulp",
"test": "cucumberjs ./test/"
},
"repository": {
"type": "git",
"url": "https://[email protected]/danielthepope/countdown.git"
},
"author": "Daniel Pope",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielthepope/countdown/issues"
},
"homepage": "https://github.com/danielthepope/countdown",
"dependencies": {
"bootstrap": "^3.3.7",
"express": "^4.18.2",
"pug": "^3.0.2",
"sprintf-js": "^1.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"cucumber": "^1.3.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.0",
"gulp-develop-server": "^0.5.2",
"gulp-postcss": "^8.0.0",
"gulp-pug": "^5.0.0",
"gulp-purifycss": "^0.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.2",
"zombie": "^6.1.4"
}
}