-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
49 lines (49 loc) · 1.01 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
{
"name": "grapesjs-parser-postcss",
"version": "1.0.3",
"description": "Custom CSS parser via PostCSS for GrapesJS",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"lint": "eslint src",
"test": "jest",
"patch": "npm version patch -m 'Bump v%s'",
"start": "grapesjs-cli serve",
"build": "npm run test && grapesjs-cli build"
},
"repository": {
"type": "git",
"url": "https://github.com/GrapesJS/parser-postcss.git"
},
"keywords": [
"grapesjs",
"plugin",
"parser",
"css",
"postcss",
"wysiwyg"
],
"babel": {
"env": {
"test": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}
},
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@types/jest": "^29.5.5",
"eslint": "^8.21.0",
"grapesjs": "^0.21.7",
"grapesjs-cli": "^4.1.3",
"jest": "^29.7.0",
"postcss": "^8.4.14"
}
}