-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.98 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
{
"name": "@modzy/modzy-sdk",
"version": "2.0.1",
"description": "Javascript SDK for Modzy",
"author": "Modzy",
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/modzy/sdk-javascript.git"
},
"keywords": [
"Modzy",
"SDK"
],
"bugs": {
"url": "https://github.com/modzy/sdk-javascript/issues"
},
"homepage": "https://github.com/modzy/sdk-javascript#readme",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"browser": {
"dist/FileJobClient.js": "./dist/FileJobClientBrowser.js",
"dist/base64Util.js": "./dist/base64UtilBrowser.js",
"fs": false
},
"scripts": {
"watch": "babel --watch --extensions .ts,.tsx --ignore ./src/**/tests/**/* ./src --out-dir dist",
"build": "yarn build:babel && yarn build:types",
"build:babel": "rimraf ./dist && babel --extensions .ts,.tsx --ignore ./src/**/tests/**/* ./src --out-dir dist",
"build:types": "rimraf ./types && tsc --project ./tsconfig.types.json && replace 'import type' 'import' ./types -r --silent && replace 'export type' 'export' ./types -r --silent",
"prettier": "prettier \"{.,src,src/**,types}/*.{md,js,jsx,ts,tsx,json}\"",
"format": "yarn prettier --write",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/node": "^17.0.8",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-jest": "^27.5.1",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.5.1",
"prettier": "^2.5.0",
"replace": "^1.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"dependencies": {
"axios": "^0.24.0",
"form-data": "^4.0.0",
"string-similarity": "^4.0.4"
}
}