-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "@complat/chemotion-reaction-svg-composer",
"version": "1.1.0",
"description": "composes svg picture of a reaction out of individual ones and other text components",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ComPlat/reaction-svg-composer.git"
},
"author": "Markus Wersig <m.wersig@cortona.de>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.7",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"scripts": {
"compile": "yarn run tscEs && yarn run tscCommon && yarn run test",
"tscEs": "tsc -p tsconfig.esm.json",
"tscCommon": "tsc -p tsconfig.cjs.json",
"lint": "eslint --fix",
"start": "node --experimental-json-modules lib/esm/index.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules HEADLESS_REACTION_SVG=true jest",
"prepare": "yarn run tscEs && yarn run tscCommon"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.2.0",
"dotenv": "^16.4.7",
"svgdom": "^0.1.14"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
},
"./ReactionRenderer": {
"import": {
"types": "./lib/esm/types/ReactionRenderer.d.ts",
"default": "./lib/esm/ReactionRenderer.js"
},
"require": {
"types": "./lib/cjs/types/ReactionRenderer.d.ts",
"default": "./lib/cjs/ReactionRenderer.js"
}
}
},
"files": [
"lib/**/**/*"
],
"bugs": {
"url": "https://github.com/ComPlat/reaction-svg-composer/issues"
},
"homepage": "https://github.com/ComPlat/reaction-svg-composer#readme",
"directories": {
"lib": "lib",
"test": "tests"
}
}