-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
60
61
62
63
64
65
{
"name": "@silexlabs/grapesjs-symbols",
"version": "1.1.3",
"description": "Symbols for GrapesJS",
"browser": "dist/bundle.iife.js",
"main": "dist/es5/index.js",
"module": "dist/bundle.esm.js",
"types": "dist/es6/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/grapesjs-symbols.git"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "grapesjs-cli serve",
"build": "rm -rf dist && tsc && tsc --build tsconfig.es5.json && $npm_execpath run bundle",
"bundle": "rollup -c",
"prepublishOnly": "$npm_execpath run build && $npm_execpath run test && $npm_execpath run lint",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "$npm_execpath run lint -- --fix",
"test": "jest",
"test:watch": "node --experimental-vm-modules `node_modules jest`/jest/bin/jest.js --watch",
"bump": "$npm_execpath version patch -m 'Bump v%s'",
"prepare": "husky"
},
"keywords": [
"grapesjs",
"plugin",
"grapesjs-plugin"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/backbone": "^1.4.22",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"babel-types": "^6.26.0",
"eslint": "^9.19.0",
"grapesjs": "^0.21.13",
"grapesjs-cli": "^4.1.3",
"husky": "^9.1.7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.2",
"node_modules-path": "^2.0.8",
"rollup": "^4.32.1",
"rollup-plugin-summary": "^3.0.0",
"ts-jest": "^29.1.0"
},
"license": "MIT",
"dependencies": {
"backbone": "^1.6.0",
"jquery": "^3.7.0",
"lit-html": "^3.1.4"
}
}