-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.42 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
68
69
{
"name": "sbg-node",
"version": "0.0.0",
"description": "sbg-node api client",
"license": "MIT",
"main": "lib/sbg.js",
"repository": {
"type": "git",
"url": "https://github.com/flipio/sbg-node-client"
},
"author": "Filip Jelic <[email protected]>",
"contributors": [
{
"name": "Dragan Bajcic",
"email": "[email protected]"
},
{
"name": "Filip Jelic",
"email": "[email protected]"
}
],
"keywords": [
""
],
"files": [
"lib",
"**/*.ts",
"tsconfig.json",
"tslint.json",
"typings.json"
],
"typescript": {
"definition": "lib/sbg-node.d.ts"
},
"scripts": {
"postinstall": "typings install && gulp build",
"test": "gulp test",
"build": "gulp build"
},
"dependencies": {
"fs-extra": "^0.26.7",
"lodash": "^4.10.0",
"q": "^1.4.1",
"request": "^2.70.0"
},
"devDependencies": {
"chai": "^3.5.0",
"del": "2.2.0",
"dotbin": "^1.0",
"dts-generator": "^1.7",
"gulp": "^3.9.0",
"gulp-help": "^1.6.0",
"gulp-inject": "4.0.0",
"gulp-jasmine": "^2.0.1",
"gulp-mocha": "^2.2.0",
"gulp-sequence": "0.4.5",
"gulp-tsconfig-files": "0.3.0",
"gulp-tslint": "^4.3.5",
"gulp-util": "^3.0.7",
"jasmine": "^2.3.1",
"mocha": "^2.4.5",
"tslint": "^3.7.1",
"typescript": "^1.8"
},
"engines": {
"node": ">=2.0.0"
},
"typings": "./lib/sbg-node.d.ts"
}