-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "elementor-editor-packages",
"description": "Packages for elementor editor",
"private": false,
"license": "GPL-3.0-only",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test:unit": "jest --config='./test/unit/jest.config.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elementor/elementor-editor-packages"
},
"bugs": {
"url": "https://github.com/elementor/elementor-editor-packages/issues"
},
"homepage": "https://github.com/elementor/elementor-editor-packages",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@wordpress/eslint-plugin": "^7.3.0",
"@wordpress/prettier-config": "^0.4.0",
"babel-jest": "^26.5.2",
"eslint": "^7.11.0",
"glob": "^7.1.6",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lerna": "^3.22.1",
"prettier": "npm:[email protected]",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.29.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-preserve-shebang": "^1.0.1",
"rollup-plugin-scss": "^2.6.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {}
}