forked from mancjs/mancjs-code-golf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 930 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
32
33
34
35
36
{
"name": "mancjs-golf",
"version": "0.0.0",
"description": "The MancJS code golf server",
"main": "mancjs-golf.js",
"scripts": {
"start": "ts-node src",
"test": "mocha --require ts-node/register src/test/*.spec.ts"
},
"author": "Martin Rue",
"license": "BSD-2-Clause",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.11.1",
"@types/lodash": "^4.14.108",
"@types/multiparty": "^0.0.31",
"@types/node": "^8.0.0",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-basic-auth": "^1.1.5",
"jsmin": "~1.0.1",
"lodash": "^4.17.10",
"multiparty": "^4.1.3",
"mustachex": "^0.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^2.8.3"
}
}