-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 934 Bytes
/
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
{
"name": "@chartisan/chartisan",
"version": "3.0.5",
"description": "Supercharged language agnostic charts",
"main": "dist/chartisan.es.js",
"module": "dist/chartisan.es.js",
"types": "dist/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/chartisan/chartisan.git"
},
"scripts": {
"dev": "ultrabundle",
"watch": "ultrabundle --watch",
"prod": "ultrabundle --optimize",
"docs": "typedoc src",
"release": "npm run prod && npm run docs"
},
"keywords": [
"Chart",
"Charts",
"Chartisan",
"Plot",
"Plots",
"Graphic",
"Graphics"
],
"author": "Èrik Campobadal Forés <soc@erik.cat>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^12.12.21",
"typedoc": "^0.16.5",
"typescript": "^3.7.3",
"ultrabundle": "^1.0.2"
},
"dependencies": {
"deepmerge": "^4.2.2"
}
}