-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.08 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
65
66
67
{
"name": "spiel-request",
"version": "0.3.0",
"description": "Module to send request based in XmlHttpRequest",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"keywords": [
"request",
"ajax",
"framework",
"spiel"
],
"scripts": {
"test": "./node_modules/.bin/karma start",
"build": "./node_modules/typescript/bin/tsc",
"server": "nodemon --watch 'serviceTest/**/**' -e ts --exec 'ts-node' ./serviceTest/service.ts",
"docs": "gulp typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spieljs/spiel-request.git"
},
"author": "Francisco Jesus Navarro Cortes",
"license": "MIT",
"bugs": {
"url": "https://github.com/spieljs/spiel-request/issues"
},
"homepage": "https://github.com/spieljs/spiel-request#readme",
"dependencies": {},
"devDependencies": {
"@koa/cors": "^2.2.1",
"@types/chai": "^4.1.2",
"@types/kcors": "^2.2.2",
"@types/koa": "^2.0.44",
"@types/koa-multer": "^1.0.0",
"@types/koa-router": "^7.0.27",
"@types/mocha": "^2.2.48",
"@types/node": "^8.5.8",
"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",
"kcors": "^2.2.1",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"mocha": "^4.1.0",
"nodemon": "^1.14.12",
"source-map-support": "^0.5.3",
"ts-loader": "^3.4.0",
"ts-node": "^3.3.0",
"typedoc": "^0.10.0",
"typescript": "^3.1.6",
"webpack": "^3.3.0"
}
}