forked from 2BAD/bitrix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.52 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@2bad/bitrix",
"version": "2.3.0",
"description": "Bitrix24 REST API client that doesn't suck",
"homepage": "https://github.com/2BAD/bitrix#readme",
"twitter": "@2BAD",
"author": "2BAD (https://github.com/2BAD)",
"repository": {
"type": "git",
"url": "https://github.com/2BAD/bitrix.git"
},
"bugs": {
"url": "https://github.com/2BAD/bitrix/issues"
},
"license": "MIT",
"keywords": [
"api",
"rest",
"client",
"rest-client",
"api-client",
"bx24",
"bitrix",
"bitrix24",
"typescript"
],
"dependencies": {
"@types/lodash.chunk": "4.2.6",
"@types/lodash.frompairs": "4.0.6",
"@types/lodash.range": "3.2.6",
"@types/qs": "6.5.3",
"got": "9.6.0",
"lodash.chunk": "4.2.0",
"lodash.frompairs": "4.0.1",
"lodash.range": "3.2.0",
"p-queue": "6.1.1",
"qs": "6.8.0"
},
"devDependencies": {
"@types/got": "9.6.7",
"@types/jest": "24.0.18",
"@types/node": "12.7.5",
"codecov": "3.5.0",
"dotenv": "8.1.0",
"jest": "24.9.0",
"nock": "11.3.4",
"npm-run-all": "4.1.5",
"rimraf": "3.0.0",
"ts-jest": "24.1.0",
"tslint": "5.20.0",
"tslint-config-standard": "8.0.1",
"tslint-immutable": "6.0.1",
"typescript": "3.6.3"
},
"engines": {
"node": ">=8.12.0"
},
"main": "build/main/bitrix.js",
"module": "build/module/bitrix.js",
"typings": "build/main/bitrix.d.ts",
"files": [
"build"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc --project tsconfig.json",
"build:main:watch": "run-s \"build:main -- --watch\"",
"build:module": "tsc --project tsconfig.module.json",
"clean": "rimraf build",
"lint": "tslint --project .",
"lint:fix": "tslint --fix --project .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:unit": "jest unit --coverage",
"test:unit:watch": "jest unit --watch",
"test:integration": "jest integration --coverage",
"test:integration:watch": "jest integration --watch",
"watch": "run-s clean build:main && run-p build:main:watch",
"prepublishOnly": "run-s clean build",
"preversion": "run-s clean lint test build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"setupFiles": [
"dotenv/config"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"source/**/*.ts"
]
}
}