-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 885 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
37
38
39
40
41
42
{
"name": "shopify-themekit",
"version": "0.2.0",
"description": "node wrapper for Shopify ThemeKit",
"engines": {
"node": ">=8"
},
"keywords": [
"shopify",
"theme",
"themekit"
],
"license": "MIT",
"repository": "github:chrisdothtml/shopify-themekit",
"bin": {
"shopify-themekit": "bin/cli.js",
"theme": "bin/cli.js"
},
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "standard '**/*.js' --verbose | snazzy",
"postinstall": "node lib/install.js --initial-install",
"prepush": "yarn test",
"test": "yarn lint && node test/index.js"
},
"dependencies": {
"bin-wrapper": "3.0.2",
"node-fetch": "^2.3.0",
"ora": "^1.3.0",
"pfs": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"husky": "^0.14.3",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
}
}