-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.08 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "moysklad",
"version": "0.17.0",
"description": "Библиотека для работы с API сервиса МойСклад",
"main": "index.js",
"types": "index.d.ts",
"files": [
"bundle",
"src",
"tools",
"index.js",
"index.d.ts",
"README.md"
],
"scripts": {
"lint": "eslint . --fix",
"clean": "echo 'no clean'",
"pick-version": "node ./scripts/lib-version.js",
"build": "npm run clean",
"test-src": "node -r dotenv/config tests",
"test-typings": "tsc --build tests/tsconfig.json",
"test": "npm run lint && npm run test-typings && npm run build && npm run test-src",
"coverage": "c8 node -r dotenv/config ./tests --src src --reporter text --reporter lcov --skip-full",
"version": "npm run pick-version && git add src/version.js",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmakeev/moysklad.git"
},
"keywords": [
"moysklad",
"warehouse",
"client",
"wms",
"crm",
"api"
],
"author": {
"name": "Vitaliy V. Makeev",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wmakeev/moysklad/issues"
},
"homepage": "https://github.com/wmakeev/moysklad#readme",
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "none",
"arrowParens": "avoid"
},
"np": {
"yarn": false
},
"dependencies": {
"@wmakeev/base64encode": "^2.0.1",
"have2": "1.0.0-beta.1",
"stampit": "^4.3.2"
},
"devDependencies": {
"@tsconfig/esm": "^1.0.5",
"@tsconfig/node20": "^1.0.2",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^20.17.5",
"c8": "^7.14.0",
"dotenv": "^16.4.5",
"envalid": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"np": "^7.7.0",
"prettier": "^2.8.8",
"tape": "^5.9.0",
"typescript": "^5.6.3",
"undici": "^5.28.4"
},
"engines": {
"node": ">=16.8"
}
}