This repository has been archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "taekwon",
"version": "2.1.2",
"author": "Axel Bocciarelli",
"description": "Scoring software for ITF Taekwon-Do sparring matches",
"license": "CC-BY-NC-SA-4.0",
"repository": {
"type": "git",
"url": "http://github.com/axelboc/taekwon"
},
"scripts": {
"build": "gulp build",
"prebuild": "rm -Rf \"clients/vendor\" && mkdir \"clients/vendor\" && gulp primus",
"start": "node app",
"dev": "npm run prebuild && gulp",
"reset": "gulp reset",
"test": "mocha"
},
"engines": {
"node": "^6.5.0",
"npm": "^3.10.3"
},
"browser": {
"nunjucks": "nunjucks/browser/nunjucks-slim"
},
"dependencies": {
"async": "~2.0.0",
"dotenv": "~2.0.0",
"express": "~4.14.0",
"extend": "~3.0.0",
"fastclick": "~1.0.6",
"howler": "~1.1.29",
"javascript-state-machine": "~2.3.5",
"nedb": "~1.8.0",
"nedb-logger": "~0.1.0",
"nunjucks": "~1.3.4",
"primus": "~6.0.3",
"primus-emit": "~1.0.0",
"sockjs": "~0.3.17",
"tiny-cookie": "~0.5.5"
},
"devDependencies": {
"browserify": "^13.0.1",
"chai": "^3.5.0",
"del": "^2.2.1",
"envify": "^3.4.1",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^2.0.1",
"gulp-minify-css": "^1.2.4",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"nunjucksify": "~0.2.3",
"sinon": "^1.17.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}