-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 KB
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": "editorjs-footnotes",
"homepage": "https://github.com/jakekara/editorjs-footnotes/",
"repository": {
"type": "git",
"url": "https://github.com/pcodk/editorjs-footnotes"
},
"bugs": {
"url": "https://github.com/jakekara/editorjs-footnotes/issues"
},
"license": "GPL-3.0",
"version": "0.0.4-alpha",
"types": "index.d.ts",
"scripts": {
"build-with-css": "npm run clean && tsc && npm run copy-files",
"clean": "rm -rf ./dist",
"build": "webpack",
"watch": "webpack --watch",
"test": "jest --verbose",
"prettify": "prettier --conifg .prettierrc --write src",
"copy-files": "cp -r ./src/style.css ./src/TypedParagraph.css ./src/style.css.d.ts ./src/TypedParagraph.css.d.ts ./dist/"
},
"main": "./dist/main",
"dependencies": {
"@editorjs/paragraph": "^2.7.0",
"codex-notifier": "^1.1.2",
"codex-tooltip": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@editorjs/editorjs": "^2.18.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.3.0",
"@types/jest": "^26.0.14",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.9"
}
}