-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
{
"name": "squibview",
"version": "0.0.25",
"description": "SquibView is a light weight editor which live-renders mardown (including code, diagrams, etc) or HTML to a browser",
"keywords": [
"markdown",
"editor",
"live-render",
"diagrams",
"html",
"split-view"
],
"author": "deftio (https://github.com/deftio",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git://github.com/deftio/squibview.git"
},
"bugs": {
"url": "git://github.com/deftio/squibview/issues"
},
"homepage": "https://github.com/deftio/squibview",
"main": "dist/squibview.umd.min.js",
"module": "dist/squibview.min.js",
"unpkg": "dist/squibview.umd.min.js",
"browser": "dist/squibview.umd.min.js",
"files": [
"dist"
],
"type": "module",
"directories": {
"examples": "examples"
},
"scripts": {
"test": "jest --coverage",
"build": "npm run updateVersion && npm run makeIndexHTML && npm run minifyCSS && rollup -c",
"minifyCSS": "node ./tools/minifyCSS.cjs",
"updateVersion": "node ./tools/updateVersion",
"makeIndexHTML": "node ./node_modules/docbat/src/docbat-cli.js -i README.md -o index.html"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"text",
"lcov"
]
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^29.7.0",
"clean-css": "^5.3.3",
"clean-css-cli": "^5.6.3",
"coveralls": "^3.1.1",
"cssnano": "^7.0.4",
"docbat": "^0.9.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.1",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-postcss": "^4.0.2"
}
}