-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "insert-special-characters",
"version": "1.1.3",
"description": "A Special Character inserter for the WordPress block editor (Gutenberg).",
"homepage": "https://github.com/10up/insert-special-characters#readme",
"license": "GPL-2.0-only",
"author": {
"name": "10up",
"email": "[email protected]",
"url": "https://10up.com",
"role": "developer"
},
"main": "src",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"lint:js": "wp-scripts lint-js src",
"lint:css": "wp-scripts lint-style",
"env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"postenv:start": "./tests/bin/initialize.sh",
"cypress:open": "cypress open --config-file tests/cypress/config.js --e2e --browser chrome",
"cypress:run": "cypress run --config-file tests/cypress/config.js"
},
"devDependencies": {
"@10up/cypress-wp-utils": "^0.2.0",
"@wordpress/env": "^9.2.0",
"@wordpress/scripts": "^30.5.1",
"cypress": "^13.3.1",
"cypress-mochawesome-reporter": "^3.4.0",
"husky": "^8.0.1",
"lint-staged": "^10.0.7",
"mochawesome-json-to-md": "^0.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.css": [
"npm run lint:css"
],
"*.js": [
"npm run lint:js"
]
},
"dependencies": {
"react-character-map": "^0.4.10"
}
}