-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "@devmehq/sdk-js",
"version": "1.1.4",
"private": false,
"description": "DEV.ME SDK for JavaScript & TypeScript for Server & Browser, Compatible with Node.js & React & Vue.js & Angular",
"keywords": [
"Email SMTP Verification",
"Email Verification",
"Currency Converstion Rates",
"Currency Exchange",
"Currency Converter",
"IP Geolocation",
"IP2Location",
"IP Info",
"IP Data",
"Phone Number Validation",
"OCR",
"Image to Text",
"Image to Text OCR",
"Text extractor",
"URL Shortener",
"Onetime Secret",
"Verification",
"Validation"
],
"repository": {
"type": "git",
"url": "https://github.com/devmehq/devme-sdk-js"
},
"license": "MIT",
"author": "DEV.ME <support@dev.me> (https://dev.me)",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p .",
"lint": "eslint src __tests__",
"lint-fix": "yarn lint -- --fix",
"prepare": "yarn husky install",
"prettier": "prettier --write \"src/**/*.{ts,json}\" \"__tests__/**/*.{ts,json}\"",
"test": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha",
"test-ci": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha"
},
"lint-staged": {
"src/**/*.{ts,json}": "prettier --write",
"__tests__/**/*.{ts,json}": "prettier --write"
},
"dependencies": {
"axios": "1.3.6"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"chai": "4.3.7",
"husky": "8.0.3",
"lint-staged": "13.2.2",
"mocha": "10.2.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"should": "13.2.3",
"ts-node": "10.9.1",
"typescript": "5.0.4"
}
}