forked from wwwtyro/candygraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 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
{
"name": "candygraph",
"version": "0.2.6",
"description": "Fast by default, flexible 2D plotting library.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"2d",
"plot",
"graph",
"chart",
"webgl",
"regl"
],
"author": "Rye Terrell <ryeterrell@ryeterrell.net> (https://wwwtyro.net)",
"license": "Unlicense",
"scripts": {
"build": "webpack && npm run build-tutorial && npm run build-examples",
"build-tutorial": "webpack --config docs/tutorial/webpack.config.js",
"build-examples": "webpack --config docs/examples/webpack.config.js",
"start-tutorial": "webpack-dev-server --config docs/tutorial/webpack.config.js",
"start-examples": "webpack-dev-server --config docs/examples/webpack.config.js",
"clean": "rm -rf lib",
"lint": "eslint './src/**/*.ts' './docs/examples/src/**/*.ts' './docs/tutorial/src/**/*.ts'",
"start": "concurrently -k 'npm run watch' 'npm run start-tutorial' 'npm run start-examples'",
"watch": "webpack --watch"
},
"dependencies": {
"gl-matrix": "^3.3.0",
"regl": "^1.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wwwtyro/candygraph.git"
},
"devDependencies": {
"@types/node": "^14.17.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"concurrently": "^5.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"markdown-it": "^11.0.1",
"prettier": "^2.3.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.9",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2"
}
}