-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1022 Bytes
/
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
{
"name": "fitbit-lib",
"version": "0.2.0",
"description": "Fitbit API for NodeJS",
"main": "dist/Fitbit.js",
"typings": "dist/Fitbit.d.ts",
"scripts": {
"start": "typings install",
"test": "gulp"
},
"files": ["dist/"],
"keywords": [
"fitbit",
"typescript",
"oauth2"
],
"author": {
"name": "Johan Pujol",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/workfel/fitbit-lib.git"
},
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"cookie-parser": "^1.4.3",
"express": "^4.13.4",
"express-session": "^1.13.0",
"gulp": "^3.9.0",
"gulp-insert": "^0.5.0",
"gulp-mocha": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^2.10.0",
"merge2": "^1.0.0",
"sinon": "^1.17.4",
"typescript": "^1.8.0",
"typings": "1.0.4"
},
"dependencies": {
"async": "^1.4.2",
"moment": "^2.13.0",
"request": "^2.61.0",
"simple-oauth2": "^0.7.0"
}
}