-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.12 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.12 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
{
"name": "directual-api",
"version": "1.5.0",
"description": "Directual API for JavaScript",
"main": "lib/directual.js",
"typings": "lib/directual.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"bump:minor": "npm version minor",
"bump:patch": "npm version patch",
"bump:prerelease": "npm version prerelease",
"prepublishOnly": "npm run build",
"prepare": "husky",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/directual/directual-js-api.git"
},
"keywords": [
"directual",
"sdk"
],
"author": "Navalikhin Nikita <nikita@directual.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/directual/directual-js-api/issues"
},
"homepage": "https://github.com/directual/directual-js-api#readme",
"devDependencies": {
"@types/lodash": "4.17.23",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"dependencies": {
"axios": "1.13.4",
"lodash": "4.17.23"
},
"lint-staged": {
"*.ts": "prettier --write"
}
}