-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 993 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "liquid-schema-plugin",
"version": "1.1.0",
"main": "plugin/index.js",
"license": "MIT",
"files": [
"plugin"
],
"author": {
"name": "David Warrington",
"url": "https://github.com/davidwarrington"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidwarrington/liquid-schema-plugin.git"
},
"bugs": {
"url": "https://github.com/davidwarrington/liquid-schema-plugin/issues"
},
"homepage": "https://github.com/davidwarrington/liquid-schema-plugin#readme",
"keywords": [
"liquid",
"shopify",
"webpack"
],
"dependencies": {
"fs-extra": "^8.1.0",
"schema-utils": "^2.6.1",
"webpack": "^5.17.0",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"@strawberrydigital/eslint-config": "^1.0.0",
"eslint": "^7.4.0",
"jest": "^25.1.0",
"webpack-cli": "^4.4.0"
},
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest",
"test:watch": "jest --watch"
}
}