forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.43 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
{
"name": "@shopify/async",
"version": "2.2.6",
"license": "MIT",
"description": "Primitives for loading parts of an application asynchronously",
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/async"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/async/README.md",
"devDependencies": {
"@babel/core": ">=7.0.0",
"@babel/plugin-syntax-dynamic-import": ">=7.0.0",
"@babel/traverse": ">=7.0.0",
"@babel/types": ">=7.0.0",
"@types/babel__core": ">=7.0.0",
"@types/babel__traverse": ">=7.0.0",
"@types/webpack": "^4.0.0"
},
"files": [
"build/*",
"!*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
"index.d.ts",
"babel.js",
"babel.mjs",
"babel.esnext",
"babel.d.ts",
"babel.js"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./": "./",
"./babel": {
"import": "./babel.mjs",
"require": "./babel.js",
"esnext": "./babel.esnext"
},
".": {
"import": "./index.mjs",
"require": "./index.js",
"esnext": "./index.esnext"
}
}
}