forked from Pixel2HTML/shopify-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@pixel2html/generator-shopify",
"version": "3.0.6",
"description": "Scaffold and develop shopify themes quickly",
"author": "Miguel Palau <[email protected]>",
"scripts": {
"copy": "node src/app/lib/copy",
"clean": "node src/app/lib/clean",
"compile": " babel -d generators/ --ignore templates/ generators/",
"get-ready": "npm run clean; npm run copy; npm run compile",
"prepare": "npm run get-ready",
"lint": "eslint 'src/**/*.js'",
"pretest": "npm run get-ready",
"test": "npm run lint; jest",
"postversion": "git push; git push --tags"
},
"files": [
"generators/app"
],
"main": "src/app/index.js",
"keywords": [
"yeoman-generator",
"babel",
"shopify"
],
"repository": "[email protected]:Pixel2HTML/shopify-skeleton.git",
"license": "MIT",
"dependencies": {
"chalk": "^2.3.0",
"cowsay-browser": "^1.1.8",
"gulp-filter": "^5.1.0",
"gulp-jsbeautifier": "^2.1.2",
"sync-parrot-api": "^1.0.2",
"update-notifier": "^2.3.0",
"yeoman-generator": "^2.0.2"
},
"devDependencies": {
"@pixel2html/eslint-config": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.14.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"fs-extra": "^5.0.0",
"jest": "^22.1.4",
"npm-bump": "^0.0.23",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"engines": {
"node": ">=8.0.0"
},
"eslintConfig": {
"extends": "@pixel2html/eslint-config",
"env": {
"browser": true,
"node": true,
"mocha": true
}
}
}