forked from bizon/amazon-ids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.59 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
65
66
67
68
69
70
71
72
{
"name": "@bizon/amazon-ids",
"version": "2.12.1",
"description": "Collection of Amazon identifiers",
"repository": "https://github.com/bizon/amazon-ids",
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"source": "./src/index.ts",
"exports": {
"require": "./dist/amazon-ids.js",
"default": "./dist/amazon-ids.modern.mjs"
},
"main": "./dist/amazon-ids.js",
"module": "./dist/amazon-ids.mjs",
"types": "./dist/index.d.ts",
"umd:main": "./dist/amazon-ids.umd.js",
"scripts": {
"test": "jest",
"check:ts": "tsc --noEmit",
"build": "microbundle",
"dev": "microbundle watch"
},
"dependencies": {
"mem": "^8.1.1"
},
"devDependencies": {
"@bizon/semantic-release-config": "^1.2.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.7",
"eslint-config-xo-bizon": "^1.0.1",
"jest": "^28.1.3",
"microbundle": "^0.15.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2",
"xo": "^0.52.2"
},
"keywords": [
"amazon",
"sellercentral",
"vendorcentral",
"marketplaces"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov",
"text-summary"
]
},
"xo": {
"extends": "xo-bizon",
"semicolon": false,
"space": 2,
"prettier": true
},
"prettier": {
"printWidth": 100
},
"release": {
"extends": "@bizon/semantic-release-config"
}
}