forked from mauriciopoppe/function-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.8 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "function-plot",
"version": "1.24.0",
"description": "A simple 2d function plotter powered by d3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mauriciopoppe/function-plot"
},
"bugs": "https://github.com/mauriciopoppe/function-plot/issues",
"homepage": "http://mauriciopoppe.github.io/function-plot/",
"author": "Mauricio Poppe <mauricio.poppe@gmail.com>",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"jsdelivr": "dist/function-plot.js",
"unpkg": "dist/function-plot.js",
"exports": {
"default": "./dist/index.js",
"umd": "./dist/function-plot.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d site",
"html": "node site.cjs",
"build": "npx rimraf dist && npm run html && npm run docs && npm run build:types && npm run build:webpack && npm run build:site",
"build:webpack": "NODE_ENV=production webpack",
"build:types": "tsc",
"build:site": "cp dist/*function-plot.js site/js && cp dist/*function-plot.js.map site/js",
"start": "webpack-dev-server",
"docs": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --out site/docs src/index.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"perf:pipeline": "tsx ./src/perf/interval-pipeline.ts"
},
"engines": {
"node": ">=12"
},
"files": [
"/dist"
],
"keywords": [
"function-plot",
"function",
"plotter",
"visualization",
"derivative",
"2d"
],
"standard": {
"ignore": [
"sandbox/",
"site/",
"dist/"
]
},
"dependencies": {
"built-in-math-eval": "^0.3.0",
"d3-axis": "^3.0.0",
"d3-color": "^3.1.0",
"d3-format": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-zoom": "^3.0.0",
"events": "^3.3.0",
"interval-arithmetic-eval": "^0.5.1"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.7.0",
"@types/d3": "^7.4.0",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-transform-import-meta": "^2.2.1",
"core-js": "^3.25.2",
"dox": "^1.0.0",
"eslint": "^8.23.1",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.0.3",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^9.0.2",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"prismjs": "^1.29.0",
"pug": "^3.0.2",
"puppeteer": "^21.6.1",
"standard": "^17.0.0",
"standardx": "^7.0.0",
"storybook": "^7.0.20",
"tinybench": "^2.5.1",
"ts-jest": "^29.1.1",
"ts-jest-mock-import-meta": "^1.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.3.1",
"tsx": "^4.6.2",
"typedoc": "^0.23.15",
"typescript": "^4.8.3",
"web-worker": "^1.2.0",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.0"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}