UNPKG

1.16 kBJSONView Raw
1{
2 "name": "@shopify/dates",
3 "version": "0.5.3",
4 "license": "MIT",
5 "description": "Lightweight date operations library",
6 "main": "index.js",
7 "types": "index.d.ts",
8 "scripts": {
9 "build": "tsc --p tsconfig.json"
10 },
11 "sideEffects": false,
12 "publishConfig": {
13 "access": "public",
14 "@shopify:registry": "https://registry.npmjs.org"
15 },
16 "author": "Shopify Inc.",
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/Shopify/quilt.git",
20 "directory": "packages/dates"
21 },
22 "bugs": {
23 "url": "https://github.com/Shopify/quilt/issues"
24 },
25 "homepage": "https://github.com/Shopify/quilt/blob/main/packages/dates/README.md",
26 "dependencies": {
27 "@shopify/decorators": "^1.2.2",
28 "tslib": "^1.14.1"
29 },
30 "devDependencies": {
31 "@shopify/jest-dom-mocks": "^2.11.2"
32 },
33 "files": [
34 "build/*",
35 "!tsconfig.tsbuildinfo",
36 "index.js",
37 "index.mjs",
38 "index.esnext",
39 "index.d.ts"
40 ],
41 "module": "index.mjs",
42 "esnext": "index.esnext",
43 "exports": {
44 "./": "./",
45 ".": {
46 "import": "./index.mjs",
47 "require": "./index.js",
48 "esnext": "./index.esnext"
49 }
50 }
51}