-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "node-insales",
"version": "12.2.1",
"description": "module for creating InSales API calls",
"keywords": [
"insales",
"API"
],
"license": "MIT",
"author": {
"name": "Grigoriy Baranov",
"email": "baranov@w3m.co"
},
"repository": "github:WatchDG/node-insales",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"fmt": "npx prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext=ts src",
"build": "npx tsc",
"run": "npx ts-node src/main.ts",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"prepare": "npm run build",
"postpublish": "pinst --enable"
},
"dependencies": {
"http-instance": "^7.1.2",
"node-result": "^12.0.2"
},
"devDependencies": {
"@types/node": "^16.3.3",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.31.0",
"husky": "^7.0.1",
"pinst": "^2.1.1",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "4.3.5"
}
}