-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 868 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 868 Bytes
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
{
"name": "chart-engine",
"version": "1.0.0",
"description": "Chart engine",
"main": "dist/engine.js",
"repository": {
"type": "git",
"url": "git@gitlab.ayrex.com:vbykov/chart-engine.git"
},
"keywords": [
"chart",
"canvas"
],
"author": "Vladimir Bykov",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015-loose-rollup": "^7.0.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"dependencies": {
"dynamica": "^1.0.1",
"kinetica": "^0.1.0",
"renderium": "^0.3.0",
"vectory": "^1.1.0"
},
"babel": {
"presets": [
"es2015-loose-rollup"
]
},
"scripts": {
"check": "standard src/**/* | snazzy",
"build": "rollup -c"
}
}