-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "spiel-server",
"version": "1.0.1",
"description": "Middleware framework to make easy to write backend applications",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "lab -v --sourcemaps --transform node_modules/lab-transform-typescript test/spiel.server.test.ts",
"lint": "./node_modules/tslint/bin/tslint 'src/**/*.ts'",
"docs": "gulp typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spieljs/spiel-server.git"
},
"keywords": [
"spiel",
"javascript",
"typescript",
"backend",
"node"
],
"author": "Francisco Jesus Navarro Cortes",
"license": "MIT",
"bugs": {
"url": "https://github.com/spieljs/spiel-server/issues"
},
"homepage": "https://github.com/spieljs/spiel-server#readme",
"devDependencies": {
"@types/code": "^4.0.4",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"code": "^5.2.0",
"gulp": "^3.9.1",
"gulp-typedoc": "^2.2.0",
"lab": "^15.4.1",
"lab-transform-typescript": "^3.0.1",
"nodemon": "^1.17.2",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"typedoc": "^0.10.0",
"typedocs": "^0.6.3",
"typescript": "2.7.2"
},
"dependencies": {
"@types/jwt-simple": "^0.5.33",
"@types/roads": "^5.0.1",
"@types/roads-server": "^1.0.0",
"jwt-simple": "^0.5.1",
"roads": "^5.0.0-alpha.16",
"roads-server": "^1.0.0-alpha.1"
}
}