-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.21 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
{
"name": "moysklad-instance",
"version": "4.0.1",
"description": "Преднастроенная конфигурация библиотеки moysklad",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/"
],
"scripts": {
"update": "npm i moysklad-api-model@latest moysklad@latest moysklad-fetch-planner@latest",
"env:example": "npx sync-dotenv",
"compile:dev": "tsc",
"compile": "rm -rf build/ && tsc --build tsconfig.prod.json",
"lint": "eslint . --fix",
"build:dev": "npm run lint && npm run compile:dev",
"build": "rm -rf build/ && npm run lint && npm run compile",
"ver:patch": "json -I -f package.json -e \"this.version = '$(semver -i patch $(cat package.json | json version))'\" && git add package.json && git commit -m \"version patch\"",
"git:tag": "git tag \"v$(cat package.json | json version)\"",
"npm:publish": "npm run build && npm publish && npm run git:tag && git push",
"npm:publish:patch": "npm run build && npm run ver:patch && npm publish && npm run git:tag && git push"
},
"keywords": [
"moysklad",
"wms",
"crm"
],
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 80
},
"author": {
"name": "Vitaliy V. Makeev",
"email": "w.makeev@gmail.com"
},
"license": "ISC",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"lodash.memoize": "^4.1.2",
"moysklad": "^0.16.0",
"moysklad-api-model": "^3.0.0",
"moysklad-fetch-planner": "^1.0.1"
},
"devDependencies": {
"@types/lodash.memoize": "^4.1.6",
"@types/node": "^14.17.3",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@typescript-eslint/typescript-estree": "^4.27.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"json": "^11.0.0",
"prettier": "^2.3.2",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"tape": "^5.2.2",
"typescript": "^4.3.4",
"typescript-eslint-language-service": "^4.1.4"
}
}