-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "@hamworks/code-block-syntax-highlight",
"version": "0.1.3",
"author": "Hiroshi Urabe <[email protected]> (https://ham.works)",
"license": "GPL-3.0+",
"main": "build/index.js",
"scripts": {
"env": "wp-scripts env",
"test": "wp-scripts test-unit-js --config tests/js/jest.config.json",
"start": "wp-scripts start & npm run postcss -- -w",
"build": "wp-scripts build && npm run postcss",
"lint-js": "wp-scripts lint-js",
"postcss": "postcss ./src/[^_]*.css --dir ./build --verbose"
},
"repository": {
"type": "git",
"url": "[email protected]:team-hamworks/code-block-syntax-highlight.git"
},
"dependencies": {
"highlight.js": "9.17.1",
"react": "16.12.0",
"react-dom": "16.12.0"
},
"devDependencies": {
"@wordpress/browserslist-config": "2.6.0",
"@wordpress/components": "8.5.0",
"@wordpress/compose": "3.9.0",
"@wordpress/editor": "9.9.0",
"@wordpress/element": "2.10.0",
"@wordpress/hooks": "2.6.0",
"@wordpress/scripts": "^6.1.1",
"cssnano": "^4.1.10",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"postcss-omit-import-tilde": "^1.0.1",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0"
},
"wp-env": {
"plugin-dir": "code-block-syntax-highlight",
"plugin-name": "code-block-syntax-highlight",
"welcome-build-command": "npm run start"
},
"release-it": {
"hooks": {
"before:bump": "npm run build",
"after:bump": "bash ./bin/create-release.sh ${version}"
},
"github": {
"release": true,
"assets": [
"code-block-syntax-highlight.zip"
]
},
"npm": {
"publish": false
}
}
}