-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.55 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.55 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "augmented-reality",
"version": "0.1.0",
"description": "Adds blocks for augmented reality experiences.",
"author": "Ryan Kienstra",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"plugin",
"AR"
],
"homepage": "https://github.com/kienstra/augmented-reality#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kienstra/augmented-reality.git"
},
"bugs": {
"url": "https://github.com/kienstra/augmented-reality/issues"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"@google/model-viewer": "0.10.0",
"@testing-library/jest-dom": "5.10.1",
"@testing-library/react": "10.2.1",
"@wordpress/api-fetch": "3.16.0",
"@wordpress/block-editor": "4.0.0",
"@wordpress/blocks": "6.17.0",
"@wordpress/components": "9.7.0",
"@wordpress/data": "4.19.0",
"@wordpress/deprecated": "2.8.0",
"@wordpress/dom-ready": "2.9.0",
"@wordpress/e2e-test-utils": "4.8.0",
"@wordpress/editor": "9.17.0",
"@wordpress/element": "2.14.0",
"@wordpress/env": "1.4.0",
"@wordpress/eslint-plugin": "6.1.0",
"@wordpress/hooks": "2.8.0",
"@wordpress/i18n": "3.13.0",
"@wordpress/icons": "2.1.0",
"@wordpress/jest-puppeteer-axe": "1.8.0",
"@wordpress/media-utils": "1.12.0",
"@wordpress/scripts": "10.0.0",
"eslint": "7.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.21.2",
"husky": "4.2.5",
"jest-image-snapshot": "4.0.2",
"jest-silent-reporter": "0.2.1",
"lodash": "4.17.19",
"puppeteer": "2.0.0",
"react": "16.13.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpackbar": "4.0.0"
},
"scripts": {
"build": "wp-scripts build",
"deploy": "grunt deploy",
"dev": "wp-scripts start",
"env": "wp-env",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "wp-scripts lint-js js/src tests/e2e",
"lint:js:files": "wp-scripts lint-js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "vendor/bin/phpcs",
"lint:php:fix": "vendor/bin/phpcbf",
"test:e2e": "wp-scripts test-e2e --config=tests/e2e/jest.config.js --runInBand",
"test:e2e:interactive": "npm run test:e2e -- --puppeteer-interactive",
"test:e2e:update-snapshot": "npm run test:e2e -- --updateSnapshot",
"test:js": "wp-scripts test-unit-js",
"test:php": "composer test",
"packages-update": "wp-scripts packages-update"
},
"husky": {
"hooks": {
"pre-commit": "./bin/pre-commit.sh"
}
}
}