forked from Shopify/slate-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.82 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
65
66
67
68
{
"name": "@shopify/slate-tools",
"version": "0.3.1",
"description": "Tooling for Shopify themes",
"main": "lib/gulpfile.js",
"license": "MIT",
"author": "Shopify Inc.",
"dependencies": {
"@shopify/theme-lint": "2.0.0",
"@shopify/themekit": "~1.1.1",
"bluebird": "3.4.6",
"browser-sync": "2.26.7",
"chokidar": "1.6.1",
"cross-spawn": "5.0.1",
"debug": "2.3.3",
"del": "2.2.2",
"find-root": "1.0.0",
"gulp": "3.9.1",
"gulp-cheerio": "0.6.2",
"gulp-cssimport": "5.0.0",
"gulp-ext-replace": "0.3.0",
"gulp-ignore": "2.0.2",
"gulp-include": "2.3.1",
"gulp-plumber": "1.1.0",
"gulp-size": "2.1.0",
"gulp-svgmin": "1.2.3",
"gulp-uglify": "2.0.0",
"gulp-util": "3.0.7",
"gulp-zip": "3.2.0",
"js-yaml": "3.7.0",
"lodash": "4.17.2",
"open": "0.0.5",
"require-dir": "0.3.2",
"run-sequence": "1.2.2",
"vinyl-paths": "2.1.0",
"yargs": "6.4.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-plugin-add-shopify-header": "1.0.6",
"babel-preset-shopify": "15.0.1",
"babel-register": "6.18.0",
"eslint": "3.10.2",
"eslint-plugin-node": "3.0.4",
"eslint-plugin-shopify": "15.1.0"
},
"scripts": {
"clean": "rm -rf lib/",
"start": "npm run clean && babel -w -d lib/ src/",
"test": "npm run lint",
"prepublish": "npm test && npm run clean && babel -d lib/ src/",
"lint": "eslint --max-warnings 0 -c .eslintrc.json src/",
"lint-allow-warning": "eslint -c .eslintrc.json src/"
},
"keywords": [
"shopify",
"themekit"
],
"repository": {
"type": "git",
"url": "git://github.com/Shopify/slate-tools.git"
},
"homepage": "https://github.com/Shopify/slate-tools",
"bugs": {
"url": "https://github.com/Shopify/slate-tools/issues"
}
}