-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "@quave/bitrix24-api",
"version": "1.1.7",
"description": "An API to work with Bitrix24",
"main": "./index.js",
"types": "./types/index.d.ts",
"private": false,
"scripts": {
"build": "npm run build:clean && npm run build:cjs && npm run build:types && npm run build:pre-cp",
"test": "jest",
"prettier": "prettier --write src/*.ts",
"build-test": "npm run build && npm run test",
"build:clean": "rm -rf dist",
"build:cjs": "npm run build:clean && tsc -p config/tsconfig.cjs.json",
"build:types": "rm -rf dist/types && tsc -p config/tsconfig.types.json",
"build:pre-cp": "cp package.json README.md ./dist/",
"publish:lib": "npm run build-test && npm publish --access public ./dist",
"postpub": "ls ./dist"
},
"author": "Fernando Lima",
"license": "private",
"devDependencies": {
"@quave/eslint-config-quave": "^1.0.7",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"axios": "^0.24.0",
"eslint": "^8.23.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"peerDependencies": {
"axios": "^0.24.0"
},
"eslintConfig": {
"extends": [
"@quave/quave"
]
}
}