-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
87 lines (87 loc) · 2.18 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": "idyll-components",
"version": "6.0.0-alpha.2",
"description": "Components that ship by default in new Idyll projects",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.mjs"
}
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"type": "commonjs",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"prepublishOnly": "npm run build",
"test": "npm run build && jest"
},
"resolutions": {
"jest-environment-jsdom": "27.3.1"
},
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
],
"testMatch": [
"**/test/**/*.js"
],
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idyll-lang/idyll.git"
},
"keywords": [
"Idyll"
],
"authors": [
"Matthew Conlen",
"Ben Clinkinbeard"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/idyll-lang/idyll/issues"
},
"homepage": "https://github.com/idyll-lang/idyll#readme",
"dependencies": {
"d3-array": "^1.2.0",
"d3-drag": "^1.1.1",
"d3-format": "^1.2.0",
"d3-selection": "^1.1.0",
"idyll-component-children": "^1.0.10",
"intersection-observer": "^0.5.0",
"prop-types": "^15.5.10",
"react-inlinesvg": "^0.8.1",
"react-latex-patched": "^1.1.1",
"react-syntax-highlighter": "^5.7.0",
"react-table": "7.7.0",
"react-tiny-link": "^3.6.1",
"react-youtube": "^7.6.0",
"victory": "^0.23.0"
},
"peerDependencies": {
"react": "16 || 17 || 18",
"react-dom": "16 || 17 || 18"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-jest": "^27.5.1",
"concurrently": "^4.1.0",
"cross-env": "^5.0.5",
"enzyme": "^3.0.0",
"jest": "27",
"jest-environment-jsdom": "^27",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^2.6.2",
"rollup": "^2.70.0"
}
}