-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "spiel-connect",
"version": "0.1.2",
"description": "get all the backend methods to make request easy",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"scripts": {
"test": "node_modules/.bin/karma start",
"server": "node_modules/nodemon/bin/nodemon.js --watch 'serverTest/**/**' -e ts --exec 'ts-node' ./serverTest/server.ts",
"lint": "node_modules/tslint/bin/tslint src/**/*.ts",
"docs": "gulp typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spieljs/spiel-connect.git"
},
"keywords": [
"spieljs",
"javascript",
"typescript"
],
"author": "Francisco Jesus Navarro Cortes",
"license": "MIT",
"bugs": {
"url": "https://github.com/spieljs/spiel-connect/issues"
},
"homepage": "https://github.com/spieljs/spiel-connect#readme",
"dependencies": {
"spiel-request": "^0.2.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^8.10.1",
"chai": "^4.1.2",
"gulp": "^3.9.1",
"gulp-typedoc": "^2.2.0",
"jsdom": "^11.6.2",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jsdom-launcher": "^6.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-remap-coverage": "^0.1.5",
"karma-typescript": "^3.0.12",
"mocha": "^4.1.0",
"nodemon": "^1.17.2",
"source-map-support": "^0.5.4",
"spiel-server": "^0.2.0",
"ts-loader": "^3.4.0",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typedoc": "^0.10.0",
"typescript": "^2.8.1"
}
}