-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "@shopify/themekit",
"publishConfig": {
"access": "public"
},
"version": "1.1.10",
"description": "Node wrapper around Theme Kit",
"bin": {
"shopify-themekit": "./lib/cli.js"
},
"main": "index.js",
"license": "MIT",
"author": "Shopify Inc.",
"dependencies": {
"bin-wrapper": "^4.1.0",
"minimist": "^1.2.5",
"simple-spinner": "^0.0.5"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-shopify": "^35.0.0",
"jest": "^25.1.0",
"mock-fs": "^4.11.0"
},
"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__/"
},
"keywords": [
"themekit",
"shopify"
],
"repository": {
"type": "git",
"url": "git://github.com/Shopify/node-themekit.git"
},
"homepage": "https://github.com/Shopify/node-themekit",
"bugs": {
"url": "https://github.com/Shopify/node-themekit/issues"
}
}