-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
{
"name": "customizer-sync-helpers",
"version": "2.0.12",
"description": "Helpers for syncing customizer controls",
"author": "andreiglingeanu",
"license": "MIT",
"repository": "Creative-Themes/customizer-sync-helpers",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"test": "NODE_ENV=test jest"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.5.4",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^29.7.0",
"cross-env": "^5.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nanoid": "^2.0.0",
"prettier": "^2.2.1",
"rollup": "^2.75.6",
"rollup-plugin-peer-deps-external": "^2.2.4"
},
"files": ["dist"],
"dependencies": {
"lodash": "^4.17.21",
"shady-css-parser": "^0.1.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}