-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "socialblade",
"version": "1.0.6",
"description": "Library for Social Blade's Official API in JavaScript (TypeScript)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --module commonjs",
"test": "mocha --reporter spec --require ts-node/register tests/*.ts",
"tdd": "mocha --reporter min --require ts-node/register --watch-files tests/ --watch-files lib/ --watch --recursive tests/*.ts",
"prepublish": "npm run build"
},
"repository": "https://github.com/SocialBlade/socialblade-js",
"bugs": {
"url": "https://github.com/SocialBlade/socialblade-js/issues"
},
"keywords": [
"socialblade",
"social blade",
"socialblade api",
"socialblade.com"
],
"author": "Timothy Cole <[email protected]>",
"license": "BSD 3-Clause",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}