-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.68 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": "@bizon/amazon-ids",
"version": "4.2.2",
"description": "Collection of Amazon identifiers",
"repository": "https://github.com/bizon/amazon-ids",
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"source": "./src/index.ts",
"main": "./dist/amazon-ids.cjs",
"umd:main": "./dist/amazon-ids.umd.js",
"module": "./dist/amazon-ids.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/amazon-ids.cjs",
"default": "./dist/amazon-ids.modern.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"check:ts": "tsc --noEmit",
"build": "microbundle",
"dev": "microbundle watch"
},
"devDependencies": {
"@bizon/semantic-release-config": "^3.0.1",
"@jest/types": "^29.6.3",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.14",
"eslint-config-xo-bizon": "^3.0.3",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"xo": "^0.59.3"
},
"keywords": [
"amazon",
"sellercentral",
"vendorcentral",
"marketplaces"
],
"xo": {
"extends": "xo-bizon",
"semicolon": false,
"space": 2,
"prettier": true
},
"prettier": {
"printWidth": 100
},
"release": {
"extends": "@bizon/semantic-release-config"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}