forked from Shopify/node-themekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 918 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
{
"name": "@we-make-websites/themekit",
"version": "1.8.0",
"description": "Node wrapper around Theme Kit",
"homepage": "https://github.com/we-make-websites/themekit",
"repository": "https://github.com/we-make-websites/themekit",
"author": "Craig Baldwin and Shopify Inc.",
"license": "MIT",
"bin": {
"shopify-themekit": "./lib/cli.js"
},
"main": "index.js",
"devDependencies": {
"jest": "29.7.0",
"mock-fs": "5.4.1"
},
"dependencies": {
"bin-wrapper": "4.1.0",
"minimist": "1.2.8",
"simple-spinner": "0.0.5"
},
"scripts": {
"postinstall": "node ./lib/cli.js install",
"postversion": "node ./lib/cli.js install",
"test": "jest",
"coverage": "jest --coverage",
"lint": "./node_modules/.bin/eslint --max-warnings 0 -c .eslintrc.json lib/ __tests__/",
"lint-allow-warning": "./node_modules/.bin/eslint -c .eslintrc.json lib/ __tests__/"
}
}