forked from pshihn/legra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 865 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
{
"name": "legra",
"version": "0.2.0",
"description": "Create graphics using Lego like brick shapes.",
"main": "lib/legra.umd.js",
"module": "lib/legra.js",
"browser": "lib/legra.iife.js",
"types": "bin/legra.d.ts",
"scripts": {
"build": "rm -rf bin && tsc && rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/legra.git"
},
"keywords": [
"graphics",
"lego",
"lego bricks",
"canvas",
"dataviz"
],
"author": "Preet Shihn <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/legra/issues"
},
"homepage": "https://legrajs.com",
"devDependencies": {
"rollup": "^1.27.0",
"rollup-plugin-terser": "^5.1.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}