-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·76 lines (76 loc) · 1.81 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
69
70
71
72
73
74
75
76
{
"name": "zao-starter-theme",
"version": "1.0.0",
"description": "Project Description",
"homepage": "https://project-domain.tld",
"repository": {
"type": "git",
"url": "https://project-git-repo.tld"
},
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com",
"role": "developer"
},
"scripts": {
"start": "npm install && gulp",
"watch": "gulp watch",
"build": "gulp",
"deploy": "npm install && composer install --no-dev -o && gulp",
"lint-js": "eslint assets/js",
"format-js": "eslint --fix assets/js",
"lint": "npm run lint-js",
"format": "npm run format-js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.php": [
"./vendor/bin/phpcs --extensions=php --warning-severity=8 -s"
]
},
"license": "MIT",
"devDependencies": {
"@10up/eslint-config": "^1.0.4",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"browserslist": "^3.2.8",
"caniuse-db": "^1.0.30000853",
"del": "^3.0.0",
"eslint": "^4.18.2",
"eslint-loader": "^2.0.0",
"gulp": "^4.0.0",
"gulp-cssnano": "^2.1.2",
"gulp-filter": "^5.1.0",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.3.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"husky": "^1.0.0-rc.7",
"lint-staged": "^7.1.2",
"postcss-import": "^10.0.0",
"postcss-preset-env": "^5.1.0",
"pump": "^1.0.3",
"require-dir": "^0.3.2",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5",
"webpack-stream": "^3.2.0"
},
"engineStrict": true,
"engines": {
"node": "~8.11"
},
"dependencies": {
"normalize.css": "^8.0.0"
}
}