-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "@silexlabs/grapesjs-symbols",
"version": "1.0.43",
"description": "Symbols for GrapesJS",
"main": "dist/es5/index.js",
"module": "dist/es6/index.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",
"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'"
},
"keywords": [
"grapesjs",
"plugin",
"grapesjs-plugin"
],
"devDependencies": {
"@types/backbone": "^1.4.22",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"babel-types": "^6.26.0",
"eslint": "^8.43.0",
"grapesjs": "^0.21.13",
"grapesjs-cli": "^4.1.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.2",
"node_modules-path": "^2.0.8",
"ts-jest": "^29.1.0"
},
"license": "MIT",
"dependencies": {
"backbone": "^1.6.0",
"jquery": "^3.7.0",
"lit-html": "^3.1.4"
}
}