-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.8 KB
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
{
"name": "patternkit",
"version": "1.0.0-alpha",
"description": "Drupal module enabling drag and drop of templates into layouts.",
"main": "js/patternkit.jsoneditor.js",
"repository": {
"type": "git",
"url": "git+https://github.com/drupal-pattern-lab/patternkit.git"
},
"author": "slucero",
"license": "MIT",
"bugs": {
"url": "https://github.com/drupal-pattern-lab/patternkit/issues"
},
"homepage": "https://github.com/drupal-pattern-lab/patternkit#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@json-editor/json-editor": "^2.9.0-beta.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"cspell": "^9.0.0",
"eslint": "^8.57.1",
"eslint-plugin-drupal-contrib": "^2.1.0",
"eslint-plugin-jsdoc": "^61.0.0",
"gulp": "^4.0.2",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sourcemaps": "^2.6.5",
"handlebars": "^4.7.7",
"markdownlint-cli": "^0.48.0",
"prettier": "^3.6.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"build": "gulp",
"dev": "gulp",
"eslint": "eslint --config .eslintrc.contrib.json .",
"eslint.fix": "eslint --config .eslintrc.contrib.json . --fix",
"prettier": "prettier --check .",
"prettier.fix": "prettier --write .",
"markdownlint": "markdownlint . --config .markdownlintrc.cjs --ignore-path .markdownlintignore",
"markdownlint.fix": "markdownlint . --config .markdownlintrc.cjs --ignore-path .markdownlintignore --fix",
"cspell": "cspell '**' --no-progress --gitignore",
"postversion": "git push && git push --tags",
"serve-test": "http-server --p 9001",
"watch": "gulp watch"
},
"packageManager": "yarn@4.5.1"
}