-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1018 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1018 Bytes
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
{
"name": "@lokavaluto/lokapi",
"version": "%%version%%",
"description": "Lokavaluto API",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prepare": "tsc",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Valentin LAB",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:Lokavaluto/lokapi.git"
},
"files": [
"build",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@0k/prettier": "^0.2.1",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
},
"dependencies": {
"@0k/types-request": "^1.0.0",
"qs": "^6.10.1"
}
}