-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 KB
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
{
"name": "open-graph-ts",
"version": "0.0.3",
"description": "Promise based Open Graph implementation for Node.js with typescript support",
"main": "dist/index.js",
"types": "definitions/index.d.ts",
"typescript": {
"definition": "definitions/index"
},
"scripts": {
"test": "gulp test",
"compile": "gulp",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deziev/node-open-graph-ts.git"
},
"keywords": [
"og",
"open",
"graph",
"ts",
"typescript",
"opengraph"
],
"author": "deziev <https://github.com/deziev>, Sam Holmes",
"license": "MIT",
"bugs": {
"url": "https://github.com/deziev/node-open-graph-ts/issues"
},
"homepage": "https://github.com/deziev/node-open-graph-ts#readme",
"dependencies": {
"@types/cheerio": "^0.22.7",
"@types/request": "^2.0.9",
"cheerio": "^1.0.0-rc.2",
"request": "^2.83.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^4.0.0-alpha.1",
"merge2": "^1.2.1",
"run-sequence": "^2.2.1",
"standard-version": "^4.3.0",
"tslint": "^5.9.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.6.2"
}
}