This repository has been archived by the owner on Dec 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "tm.id.au",
"version": "0.0.5",
"description": "Custom, lean WordPress theme for tm.id.au.",
"homepage": "https://github.com/tdmalone/tm.id.au#readme",
"repository": "git+https://github.com/tdmalone/tm.id.au.git",
"author": "Tim Malone <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:images && webpack",
"build:images": "mkdir -p dist/images && svgo --folder src/images --output dist/images",
"eslint": "DEBUG=eslint:cli-engine eslint --color --ignore-pattern '/coverage/' --ignore-pattern '/dist/' --ignore-pattern '/node_modules/' --ignore-pattern '/vendor/' --ignore-pattern '!.*.js' \"**/*.js\"",
"stylelint": "stylelint --formatter verbose \"**/*.scss\"",
"lint": "yarn eslint; yarn stylelint",
"fix": "yarn eslint --fix; yarn stylelint --fix",
"test": "jest --verbose --coverage",
"watch": "webpack --watch"
},
"keywords": [
"wordpress",
"theme"
],
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
},
"dependencies": {},
"devDependencies": {
"@chromatix/stylelint-config-chromatix": "*",
"css-loader": "^0.28.10",
"eslint": "^4.8.0",
"eslint-config-tdmalone": "*",
"jest": "^21.2.1",
"jest-tobetype": "^1.1.0",
"node-reset-scss": "^1.0.1",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"stylelint": "^9.1.1",
"svg-url-loader": "^2.3.2",
"svgo": "^1.0.5",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9"
}
}