-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.9 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.9 KB
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
130
{
"name": "function-plot",
"version": "2.0.0-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 (https://mauriciopoppe.com)",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"jsdelivr": "dist/function-plot.js",
"unpkg": "dist/function-plot.js",
"exports": {
"umd": "./dist/function-plot.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"scripts": {
"html": "node site/js/examples-to-html.cjs",
"build": "npx rimraf dist && npm run html && npm run docs && npm run build:typescript && npm run build:webpack && npm run build:site",
"build:webpack": "NODE_ENV=production webpack",
"build:typescript": "tsc && mkdir -p dist/samplers && cp src/samplers/*.mjs dist/samplers/",
"build:site": "cp dist/*function-plot.js* site/",
"start": "webpack-dev-server",
"docs": "typedoc --excludeExternals --externalPattern \"**/node_modules/**\" --out site/docs src/index.ts",
"test": "npm run test:jest && npm run test:format",
"test:jest": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:format": "prettier -c .",
"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.3",
"@types/events": "^3.0.0",
"@types/node": "^18.19.115",
"@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-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": "^6.3.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",
"prettier": "^3.2.5",
"prismjs": "^1.29.0",
"pug": "^3.0.2",
"puppeteer": "^24.2.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.20.3",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"web-worker": "^1.5.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"
]
}
}