forked from dev-juju/codebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.15 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
{
"name": "@hackdoor/codebox",
"version": "1.0.16",
"license": "ISC",
"description": "Code syntax highlighting tool for Editor.js",
"keywords": [
"Editor.js",
"Code",
"Code Syntax",
"Code highlight",
"Syntax highlight"
],
"author": "Adombang Munang Mbomndih <[email protected]> (https://bomdisoft.com)",
"contributors": [
{
"name": "Michele Riva",
"url": "https://micheleriva.it",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/BomdiZane/codebox.git"
},
"scripts": {
"build": "esbuild --bundle --outfile=\"./dist/index.min.js\" --global-name=\"CodeBox\" --format=\"cjs\" --platform=\"browser\" ./src/index.ts && cp ./src/style.css ./dist/style.css",
"dev": "nodemon --watch ./src/*.ts npm run build",
"start": "node test.js",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/node": "^14.11.2",
"css-loader": "^1.0.0",
"esbuild": "^0.7.9",
"eslint": "^6.8.0",
"nodemon": "^2.0.4",
"style-loader": "^0.21.0"
},
"files": [
"dist",
"src"
],
"main": "dist/index.min.js"
}