forked from trivago/prettier-plugin-twig-melody
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "prettier-plugin-django",
"version": "0.5.18",
"description": "Prettier Plugin for Django/Twig/Melody, Django template",
"repository": "https://github.com/junstyle/prettier-plugin-django",
"author": "junstyle",
"license": "Apache-2.0",
"files": [
"out/"
],
"engines": {
"node": ">=6"
},
"main": "./out/index.js",
"jsnext:main": "./out/index.esm.js",
"module": "./out/index.esm.js",
"scripts": {
"prepublishOnly": "npm run build",
"prettier": "prettier --plugin=. --parser=melody",
"build": "npm run esbuild && npm run esbuild-es",
"esbuild": "esbuild ./src/index.js --bundle --minify --sourcemap --keep-names --outfile=out/index.js --format=cjs --platform=node",
"esbuild-es": "esbuild ./src/index.js --bundle --minify --sourcemap --keep-names --outfile=out/index-esm.js --format=esm --platform=node",
"watch": "npm run -S esbuild -- --sourcemap --watch"
},
"dependencies": {
"babel-template": "^6.26.0",
"entities": "^4.5.0",
"melody-code-frame": "^1.7.5",
"melody-idom": "^1.7.5",
"melody-traverse": "^1.7.5",
"melody-types": "^1.7.5",
"resolve": "^1.22.8"
},
"devDependencies": {
"esbuild": "^0.21.4"
}
}