-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.31 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
{
"name": "tales",
"version": "0.11.3",
"description": "synyx presentation style for everyone",
"author": "synyx",
"main": "dist/main.js",
"browser": "public/js/tales.js",
"postinstall": "electron-builder install-app-deps",
"scripts": {
"build": "rollup -c && npm run build:css",
"build:css": "postcss src/css/*.css --dir pkg/web/public/css/",
"dist": "electron-builder --publish=never",
"format": "prettier --write 'src/js/**/*.js' 'src/css/**/*.css'",
"lint": "eslint src/js",
"pack": "electron-builder --dir",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"test": "jest",
"watch": "rollup -c -w",
"watch:css": "postcss src/css/*.css --dir pkg/web/public/css/ -w"
},
"repository": {
"type": "git",
"url": "[email protected]:synyx/tales.git"
},
"keywords": [
"poster",
"presentation",
"presentation-tools",
"svg"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/synyx/tales/issues"
},
"homepage": "https://github.com/synyx/tales#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"cssnano": "^7.0.6",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"flyps": "^0.6.7",
"flyps-dom-snabbdom": "^0.3.1",
"gl-matrix": "^3.4.3",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-polyglot": "^2.6.0",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"rollup": "^4.22.5"
},
"jest": {
"collectCoverageFrom": [
"js/**/*.js",
"!js/**/*.test.js"
],
"coverageDirectory": "<rootDir>/coverage",
"roots": [
"<rootDir>/src/js"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
],
"testEnvironment": "jsdom"
}
}