-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "solcast",
"version": "0.0.6",
"description": "Solcast API Client library",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "gulp build",
"start": "gulp build & node dist/src/index.js",
"setup": "npm install & typings install",
"test": "gulp test",
"watch": "nodemon --watch build dist/index.js"
},
"keywords": [
"api",
"solcast",
"forecast",
"radiation",
"power"
],
"author": "Robin Michael <[email protected]> (https://github.com/Siliconrob)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Siliconrob/solcast-ts"
},
"devDependencies": {
"@types/code": "^4.0.3",
"@types/expect": "^1.20.2",
"@types/lab": "^11.1.0",
"@types/node": "^8.5.2",
"gulp": "^3.9.1",
"gulp-env": "^0.4.0",
"gulp-lab": "^1.0.7",
"gulp-rimraf": "^0.2.1",
"gulp-shell": "^0.6.3",
"gulp-tslint": "^8.1.2",
"lab": "^14.3.2",
"lab-transform-typescript": "^3.0.1",
"run-sequence": "^2.2.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"joi": "^10.6.0",
"nodemon": "^1.14.3",
"web-request": "^1.0.7"
}
}