-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sosie-js/editor.js",
"version": "0.8.0",
"keywords": [
"sosie editor",
"sosiejs"
],
"description": "SoS Improved Editor based on editor.js",
"main": "dist/sosie.js",
"scripts": {
"build": "rimraf dist/* && cp src/sosie.css dist/sosie.css && cp src/editor.js/dist/* dist/ && cp -r src/font-awesome/css dist/ && cp -r src/font-awesome/fonts dist/ && cp src/js-notifier/dist/bundle.js dist/notifier.js && cp src/editorjs-undo/dist/bundle.js dist/editorjs-undo.js && yarn build:prod",
"build:win": "rimraf dist && copy src/sosie.css dist/sosie.css && cp src/editor.js/dist/* dist/ && cp -r src/font-awesome/css dist/ && cp -r src/font-awesome/fonts dist/ && cp src/js-notifier/dist/bundle.js dist/notifier.js && cp src/editorjs-undo/dist/bundle.js dist/editorjs-undo.js && yarn build:prod",
"build:prod": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"test": "mocha -r @babel/register -r ignore-styles --recursive ./test",
"install": "yarn pull_tools",
"uninstall": "git submodule deinit -f --all",
"lints": "eslint src/ --ext .ts",
"lints:errors": "eslint src/ --ext .ts --quiet",
"lints:fix": "eslint src/ --ext .ts --fix",
"minify": "node --unhandled-rejections=strict minify.js",
"lint": "eslint src/ --ext .js",
"lint:errors": "eslint src/ --ext .js --quiet",
"lint:fix": "eslint src/ --ext .js --fix",
"lint:init": "eslint src/ --ext .js --init",
"pull_tools": "git submodule update --init --recursive",
"checkout_tools": "git submodule foreach git pull"
},
"author": "sos-productions",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sosie-js/editor.js.git"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"css-loader": "^3.5.3",
"debounce": "^1.2.0",
"eslint": "^7.10.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"highlightjs": "^9.16.2",
"ignore-styles": "^5.0.1",
"jsondiffpatch": "^0.4.1",
"mocha": "^7.1.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"style-loader": "^1.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.11"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/editorjs"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-class-display-name": "^2.1.0",
"codex-notifier": "^1.1.2",
"codex-tooltip": "^1.0.1",
"core-js": "3",
"cssnano": "^4.1.10",
"file-saver": "^2.0.2",
"license-webpack-plugin": "^2.3.0",
"nodegit": "^0.27.0",
"postcss-apply": "^0.12.0",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"promise-polyfill": "8.1.3",
"typescript": "^4.0.3"
}
}