forked from dividab/abstract-visuals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 835 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
{
"name": "abstract-chart",
"version": "2.2.6",
"description": "Drawing charts using multiple unit of measure axes as coordinate system",
"repository": "https://github.com/dividab/abstract-visuals/tree/master/packages/abstract-chart",
"main": "lib-cjs/index.js",
"module": "lib-esm/index.js",
"types": "lib-cjs/index",
"license": "MIT",
"dependencies": {
"abstract-image": "^2.2.5",
"ramda": "^0.22.1",
"ts-exhaustive-check": "^1.0.0"
},
"devDependencies": {
"@types/ramda": "^0.25.29"
},
"scripts": {
"build": "yarn build:clean && yarn build:cjs && yarn build:esm",
"build:clean": "rm -rf ./lib-cjs ./lib-esm",
"build:cjs": "tsc",
"build:esm": "tsc --module es2015 --outDir ./lib-esm",
"test": "rm -rf test/lib && mocha --colors",
"test:build": "cd test && tsc"
}
}