-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "htmlreditor",
"description": "htmlreditor is a modern rich text editor built for compatibility and extensibility",
"version": "2.1.0",
"main": "./src/app.js",
"bin": "./build",
"author": "github: TheWitcher1991 <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/TheWitcher1991/HTMLREditor.git"
},
"license": "GNU GPL",
"scripts": {
"test": "mocha",
"build": "webpack --mode production",
"watch": "webpack --mode production -w",
"server": "php -S 127.0.0.1:3000"
},
"private": false,
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-for-of": "^7.4.4",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^6.5.1",
"mocha": "^6.2.2",
"mysql": "^2.17.1",
"requirejs": "^2.3.6",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"eslintIgnore": [
"build/**",
"node_modules/**",
"coverage/**",
"packages/**"
],
"engines": {
"node": ">= 14.x",
"npm": ">= 7.x",
"yarn": ">= 1.x"
}
}