-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "ribbon-client",
"version": "0.0.1-beta.31",
"description": "a client for Ribbon API",
"main": "./dist/cjs/ribbon-client.js",
"module": "./dist/esm/ribbon-client.js",
"types": "./dist/esm/index.d.ts",
"engines": {
"node": ">=14.17"
},
"scripts": {
"build": "webpack --mode=production --node-env=production",
"test": "jest",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"exports": {
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/ribbon-client.js",
"require": "./dist/cjs/ribbon-client.js"
},
"./dist/*": "./dist/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@types/humps": "^2.0.2",
"@types/jest": "^29.1.1",
"@types/whatwg-url": "^11.0.0",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.40.0",
"axios": "^0.27.2",
"babel-jest": "^29.1.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.1.2",
"prettier": "2.7.1",
"process": "^0.11.10",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-toolbelt": "9.6.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"files": [
"dist",
"package.json"
]
}