-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "network-stapler",
"version": "2.0.0",
"description": "microlib for organized client side network code",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/aloco/NetworkStapler.git"
},
"scripts": {
"test": "npm run clean && npm run tsc && mocha ./build/tests/setup.js -c -t 30000 -A",
"build": "npm run clean && npm run tsc",
"tsc": "./node_modules/typescript/bin/tsc",
"clean": "rimraf build"
},
"keywords": [
"network",
"client",
"api"
],
"author": "Andreas Tinoco Lobo",
"license": "MIT",
"dependencies": {
"@types/core-js": "^0.9.41",
"query-string": "^4.3.4",
"url-join": "^2.0.2"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/chai-http": "0.0.30",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"chai": "^4.0.0",
"chai-http": "^4.3.0",
"express": "^4.15.3",
"form-data": "^2.3.3",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"mocha": "^6.1.4",
"multer": "^1.4.1",
"require-dir": "^0.3.1",
"resolve-glob": "^0.1.8",
"rimraf": "^2.6.1",
"tslint": "^5.3.2",
"typescript": "^2.3.3"
}
}