This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.51 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
{
"name": "ketcher-core",
"version": "2.9.0-rc.1",
"description": "Web-based molecule sketcher",
"license": "Apache-2.0",
"homepage": "http://lifescience.opensource.epam.com/ketcher",
"author": {
"name": "EPAM Life Sciences",
"url": "http://lifescience.opensource.epam.com"
},
"repository": {
"type": "git",
"url": "https://github.com/epam/ketcher.git",
"directory": "packages/ketcher-core"
},
"keywords": [
"molecule",
"sketcher",
"chemistry"
],
"bugs": {
"url": "https://github.com/epam/ketcher/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c -m true",
"start": "cross-env NODE_ENV=development rollup -c -m true -w",
"test": "run-s test:prettier test:eslint test:unit",
"test:eslint": "eslint . --ext .ts,.js",
"test:unit": "jest",
"test:prettier": "prettier --check \"./**/*.{js,ts,json}\"",
"prettier:write": "prettier --write \"./**/*.{js,ts,json}\"",
"typedoc": "typedoc"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"ajv": "^8.10.0",
"assert": "^2.0.0",
"lodash": "^4.17.21",
"raphael": "^2.3.0",
"svgpath": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@rollup/plugin-strip": "^2.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-jest": "26.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^25.3.0",
"jest": "26.6.0",
"jest-mock-extended": "^2.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rollup": "^2.60.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "26.5.6",
"ttypescript": "^1.5.13",
"typedoc": "^0.22.17",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.5.2"
},
"files": [
"dist"
]
}