-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@dofapi/crawlit",
"version": "1.6.20",
"homepage": "https://github.com/dofapi/crawlit-dofus-encyclopedia-parser",
"description": "Crawl structured dofus encyclopedia data to populate the Dofapi app & API",
"author": {
"name": "Zakaria Rachedi",
"url": "https://github.com/raczak"
},
"main": "lib/app.js",
"bin": "lib/app.js",
"scripts": {
"start": "node dist/app.js",
"prestart": "npm run -s build",
"dev": "node lib/app.js",
"crawlit": "npm run -s build",
"dofus-all-fr": "sh full-parse-dofus-fr.sh",
"dofus-all-en": "sh full-parse-dofus-en.sh",
"touch-all-fr": "sh full-parse-dsofustouch-fr.sh",
"touch-all-en": "sh full-parse-dofustouch-en.sh",
"clean": "rm -R ./dist ./data",
"clean-win": "rmdir dist data /s /q",
"build": "babel --presets @babel/preset-env --ignore data -d dist/ lib",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/dofapi/crawlit-dofus-encyclopedia-parser.git"
},
"bugs": {
"url": "https://github.com/dofapi/crawlit-dofus-encyclopedia-parser/issues"
},
"licenses": [
{
"type": "CC BY-NC-SA 4.0",
"url": "https://github.com/dofapi/crawlit-dofus-encyclopedia-parser/blob/master/LICENSE"
}
],
"keywords": [
"dofus",
"dofus-touch",
"api",
"dofus api",
"dofus-touch api",
"dofus item",
"crawlit",
"dofapi",
"sosnoob"
],
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"clui": "^0.3.6",
"commander": "^2.19.0",
"inquirer": "^5.1.0",
"request-promise-native": "^1.0.7",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/runtime": "^7.5.4",
"eslint": "^5.15.3"
}
}