UNPKG

1.75 kBJSONView Raw
1{
2 "name": "@pixel2html/generator-shopify",
3 "version": "3.2.0",
4 "description": "Scaffold and develop shopify themes quickly",
5 "author": "Miguel Palau <miguel@pixel2html.com>",
6 "scripts": {
7 "copy": "node src/app/lib/copy",
8 "clean": "node src/app/lib/clean",
9 "compile": " babel -d generators/ --ignore templates/ generators/",
10 "get-ready": "npm run clean; npm run copy; npm run compile",
11 "build": "npm run get-ready",
12 "prepublishOnly": "npm run get-ready",
13 "prepare": "npm run get-ready",
14 "lint": "eslint 'src/**/*.js'",
15 "pretest": "npm run get-ready",
16 "test": "npm run lint; jest",
17 "postversion": "git push; git push --tags"
18 },
19 "files": [
20 "generators/app"
21 ],
22 "main": "src/app/index.js",
23 "keywords": [
24 "yeoman-generator",
25 "babel",
26 "shopify"
27 ],
28 "repository": "git@github.com:Pixel2HTML/shopify-skeleton.git",
29 "license": "MIT",
30 "dependencies": {
31 "chalk": "^2.4.1",
32 "cowsay-browser": "^1.1.8",
33 "gulp-eslint": "^4.0.2",
34 "gulp-filter": "^5.1.0",
35 "gulp-jsbeautifier": "^2.1.2",
36 "update-notifier": "^2.5.0",
37 "yeoman-generator": "^2.0.5"
38 },
39 "devDependencies": {
40 "@pixel2html/eslint-config": "^1.5.1",
41 "babel-cli": "^6.26.0",
42 "babel-jest": "^22.4.3",
43 "babel-plugin-add-module-exports": "^0.2.1",
44 "babel-preset-env": "^1.6.1",
45 "eslint": "^4.19.1",
46 "eslint-plugin-node": "^6.0.1",
47 "fs-extra": "^6.0.0",
48 "jest": "^22.4.3",
49 "npm-bump": "^0.0.23",
50 "yeoman-assert": "^3.1.1",
51 "yeoman-test": "^1.7.0"
52 },
53 "engines": {
54 "node": ">=8.0.0"
55 },
56 "eslintConfig": {
57 "extends": "@pixel2html/eslint-config",
58 "env": {
59 "browser": true,
60 "node": true,
61 "mocha": true
62 }
63 }
64}