forked from Shopify/theme-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 809 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
{
"name": "theme-scripts",
"private": true,
"version": "1.0.0-alpha.0",
"description": "A collection of helpful script libraries that help you make better Shopify themes.",
"main": "index.js",
"scripts": {
"test": "jest",
"bootstrap": "yarn && lerna bootstrap",
"build": "lerna run build",
"publish": "lerna publish"
},
"repository": "https://github.com/Shopify/theme-scripts",
"keywords": [
"Shopify"
],
"author": "Shopify Inc.",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-preset-shopify": "^16.2.0",
"express": "^4.16.3",
"jest": "^23.0.1",
"jest-puppeteer": "^3.0.1",
"lerna": "^2.5.1",
"puppeteer": "^1.4.0"
},
"workspaces": ["packages/*"]
}