-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 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
{
"name": "longdo-api",
"version": "1.0.10",
"description": "an unofficial api for Longdo dictionary which return queries as json",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "ts-mocha -p ./tsconfig.json test/*.spec.ts",
"format": "prettier --write \"src/*.ts\" \"test/*.spec.ts\"",
"lint": "eslint src/*.ts test/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "voidweaver",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/voidweaver/longdo-api.git"
},
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.3"
},
"files": [
"lib/*"
],
"keywords": [
"api",
"longdo",
"dictionary",
"thai",
"english"
]
}