-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "sdapi",
"version": "0.2.5",
"description": "Unofficial APIs of SpanishDict.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"sd-translate": "./bin/sd-translate",
"sd-conjugate": "./bin/sd-conjugate"
},
"scripts": {
"build": "tsc",
"rollup": "rollup -c rollup.config.js",
"rollup:qml": "rollup -c rollup.qml.config.js",
"lint": "eslint src/*.ts src/test/*.js",
"test": "jest --collect-coverage"
},
"keywords": [
"spanish",
"dictionary"
],
"author": "Simeon Huang",
"license": "BSD-3-Clause",
"dependencies": {
"himalaya": "^1.1.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^4.1.2",
"@types/node": "^14.11.10",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-plugin-jest": "^26.1.0",
"jest": "^27.0.6",
"rollup": "^2.32.0",
"stream-browserify": "^2.0.2",
"typescript": "^4.5.0"
}
}