-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1022 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1022 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
{
"name": "@lokavaluto/lokapi-browser",
"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-browser.git"
},
"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.18",
"typescript": "^4.7.4"
},
"dependencies": {
"@0k/browser-request": "^1.0.0",
"@0k/types-request": "^1.0.1",
"@lokavaluto/lokapi": "0.1.0 || >=0.1.1-alpha"
}
}