-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "art-squirrel",
"version": "0.0.1",
"description": "A tool for backing up artwork from art sites",
"main": "",
"bin": {
"art-squirrel": "./dist/index.js"
},
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json --reporter=jasmine-console-reporter",
"generate-gold-files": "ts-node src/generate-gold-files.ts",
"download-test-corpus": "ts-node src/download-test-corpus.ts",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pkovac/art-squirrel.git"
},
"keywords": [
"furaffinity"
],
"author": "digifox <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkovac/art-squirrel/issues"
},
"homepage": "https://github.com/pkovac/art-squirrel#readme",
"dependencies": {
"argparse": "^1.0.10",
"cheerio": "^1.0.0-rc.12",
"file-type": "^11.1.0",
"scrape-it": "^5.3.2",
"twitter-api-sdk": "^1.0.9"
},
"devDependencies": {
"@types/argparse": "^1.0.36",
"@types/jasmine": "^3.3.12",
"jasmine": "^3.4.0",
"jasmine-console-reporter": "^3.1.0",
"ts-node": "^8.1.0",
"typescript": "^4.7.4"
}
}