-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.29 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
55
56
57
58
{
"name": "jodit-docs",
"version": "0.1.103",
"resolutions": {
"webpack": "4.44.2",
"typedoc": "0.15.8"
},
"devDependencies": {
"@types/ace": "^0.0.47",
"@types/es6-promise": "^3.3.0",
"@types/node": "^16.10.2",
"css-loader": "^6.3.0",
"jodit": "https://github.com/xdan/jodit/tarball/master",
"jsdoc": "^3.6.7",
"jsdoc-json": "^2.0.2",
"react": "^17.0.2",
"react-app-rewired": "^2.1.8",
"react-dom": "^17.0.2",
"react-markdown": "^7.0.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"react-syntax-highlighter": "^15.4.4",
"renamer": "^4.0.0",
"typedoc": "0.15.8"
},
"scripts": {
"copy": "cp ./node_modules/jodit/README.md ./public/README.md",
"doc-fires": "node parse.js",
"doc-jsdoc": "jsdoc -c jsdoc.json --template ./node_modules/jsdoc-json --destination ./public/data-event.json --recurse ../jodit/build/jodit.js",
"doc-ts": "typedoc --mode modules --module umd --json ./public/data.json --includeDeclarations --excludeExternals --ignoreCompilerErrors --tsconfig ./node_modules/jodit/tsconfig.json ./node_modules/jodit/src",
"doc": "npm run doc-ts && npm run doc-jsdoc && npm run doc-fires && npm run copy",
"build-rename": "renamer --path-element name --find \"/^main\\.[a-z0-9]+/i\" --replace \"main\" build/static/*/**",
"newversion": "yarn upgrade && npm run doc && npm run newversion2",
"newversion2": "npm run build && npm version patch --no-git-tag-version && cp ./package.json ./build/package.json && npm run github && npm publish ./build",
"github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/xdan/jodit/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"homepage": "/jodit/node_modules/jodit-docs/",
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"dependencies": {
"typescript": "^4.4.3"
}
}