forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 969 Bytes
/
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
{
"name": "@shopify/react-serialize",
"version": "1.0.12",
"license": "MIT",
"description": "Provides an idiomatic way to serialize data for rehydration in a universal react application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --p tsconfig.build.json",
"prepublishOnly": "yarn run build"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git"
},
"bugs": {
"url": "https://github.com/shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/master/packages/react-serialize/README.md",
"dependencies": {
"serialize-javascript": "^1.5.0",
"tslib": "^1.9.3"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"typescript": "~3.0.1"
},
"sideEffects": false
}