-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.6 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.6 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bigwing-components",
"version": "0.1.0",
"private": true,
"description": "A collection of components for use in React and Gutenberg.",
"author": {
"name": "BigWing",
"email": "wordpress@bigwing.com",
"url": "https://bigwing.com"
},
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"editor",
"gutenberg",
"React",
"components"
],
"homepage": "https://github.com/bigwing/bigwing-components/",
"repository": {
"type": "git",
"url": "https://github.com/bigwing/bigwing-components.git"
},
"bugs": {
"url": "https://github.com/bigwing/bigwing-components/issues"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.9.0"
},
"scripts": {
"analyze-bundles": "npm run build -- --webpack-bundle-analyzer",
"clean:packages": "rimraf \"./packages/*/@(build|build-module|build-style)\"",
"prebuild:packages": "npm run clean:packages && lerna run build",
"build:packages": "node ./bin/packages/build.js",
"build": "npm run build:packages && wp-scripts build",
"check-licenses": "concurrently \"wp-scripts check-licenses --prod --gpl2 --ignore=@react-native-community/cli,@react-native-community/cli-platform-ios\" \"wp-scripts check-licenses --dev\"",
"check-local-changes": "( git diff -U0 | xargs -0 node bin/process-git-diff ) || ( echo \"There are local uncommitted changes after 'npm install'!\" && git diff --exit-code && exit 1 );",
"dev": "npm run build:packages && concurrently \"wp-scripts start\" \"npm run dev:packages\"",
"dev:packages": "node ./bin/packages/watch.js",
"format-js": "wp-scripts format-js packages/*/src",
"lint": "concurrently \"npm run lint-lockfile\" \"npm run lint-js\" \"npm run lint-pkg-json\" \"npm run lint-css\"",
"lint-js": "wp-scripts lint-js packages/*/src",
"lint-js:fix": "npm run lint-js packages/*/src -- --fix",
"lint-pkg-json": "wp-scripts lint-pkg-json './packages/*/package.json'",
"lint-lockfile": "node ./bin/validate-package-lock.js",
"lint-css": "wp-scripts lint-style '**/*.scss'",
"lint-css:fix": "npm run lint-css -- --fix",
"lint:md-js": "wp-scripts lint-md-js",
"lint:md-docs": "wp-scripts lint-md-docs",
"postinstall": "patch-package",
"publish:check": "lerna updated",
"publish:dev": "npm run build:packages && lerna publish prerelease --preid rc --dist-tag next",
"publish:patch": "npm run build:packages && lerna publish --dist-tag patch",
"publish:prod": "npm run build:packages && lerna publish"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-syntax-jsx": "7.8.3",
"@babel/runtime-corejs3": "7.9.6",
"@babel/traverse": "7.9.6",
"@wordpress/babel-preset-default": "4.17.0",
"@wordpress/base-styles": "2.0.1",
"@wordpress/docgen": "1.12.0",
"@wordpress/lazy-import": "1.1.0",
"@wordpress/postcss-themes": "2.6.0",
"@wordpress/scripts": "12.1.1",
"babel-loader": "8.1.0",
"babel-plugin-inline-json-import": "0.3.2",
"babel-plugin-require-context-hook": "1.0.0",
"chalk": "4.1.0",
"commander": "6.0.0",
"concurrently": "3.5.0",
"copy-webpack-plugin": "4.5.2",
"cross-env": "3.2.4",
"css-loader": "3.5.2",
"cssnano": "4.1.10",
"fast-glob": "2.2.7",
"glob": "7.1.6",
"lerna": "3.22.1",
"make-dir": "3.1.0",
"mkdir": "0.0.2",
"node-sass": "4.14.1",
"node-watch": "0.6.0",
"patch-package": "6.2.2",
"postcss": "7.0.36",
"postcss-loader": "3.0.0",
"progress": "2.0.3",
"react": "16.9.0",
"react-dom": "16.9.0",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"semver": "7.3.2",
"simple-git": "1.113.0",
"source-map-loader": "0.2.4",
"style-loader": "1.0.0",
"worker-farm": "1.7.0"
}
}