-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.24 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
{
"name": "freesound-client",
"version": "0.5.0",
"main": "./dist/index.js",
"author": "Amila Welihinda <[email protected]>",
"license": "MIT",
"files": [
"dist",
"index.ts"
],
"devDependencies": {
"@tsconfig/node10": "^1.0.9",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-bliss": "^6.0.4",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"typedoc": "^0.23.14",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7"
},
"scripts": {
"build": "rimraf dist && tsc",
"docs": "typedoc index.ts --out docs --readme none",
"lint": "eslint . --ignore-pattern dist",
"lint-fix": "npm run lint --fix",
"test": "npm run build && jest",
"version": "npm run build"
},
"eslintConfig": {
"extends": [
"bliss"
]
},
"renovate": {
"extends": [
"bliss"
]
},
"keywords": [
"freesound",
"node",
"brower",
"v2"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"release": {
"branches": [
"main"
]
}
}