-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "@airstack/node",
"version": "0.0.7",
"description": "",
"sideEffects": false,
"main": "dist/cjs/index.js",
"typings": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "rm -rf dist & tsc -p tsconfig.esm.json & npm run ts-lint & tsc -p tsconfig.cjs.json",
"test": "jest --coverage --passWithNoTests",
"test-watch": "jest --watch --coverage --passWithNoTests",
"lint": "eslint src/**/*.ts",
"ts-lint": "tsc --noEmit --incremental",
"prepare": "rm -rf dist & tsc -p tsconfig.esm.json & tsc -p tsconfig.cjs.json"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"tslib": "^2.6.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/node": "14.14.30",
"graphql": "16.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Airstack-xyz/airstack-node-sdk"
}
}