-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
36 lines (36 loc) · 980 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": "rough-notation",
"version": "0.5.1",
"description": "Create and animate hand-drawn annotations on a web page",
"main": "lib/rough-notation.cjs.js",
"module": "lib/rough-notation.esm.js",
"types": "lib/rough-notation.d.ts",
"scripts": {
"build": "rm -rf lib && tsc && rollup -c",
"lint": "tslint -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/rough-notation.git"
},
"keywords": [
"annotate",
"rough",
"sketchy"
],
"author": "Preet Shihn",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/rough-notation/issues"
},
"homepage": "https://github.com/pshihn/rough-notation#readme",
"devDependencies": {
"rollup": "^2.32.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"roughjs": "^4.3.1",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}