forked from jonobr1/two.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.48 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@jonobr1/two.js",
"version": "0.7.0-beta.4",
"description": "A renderer agnostic two-dimensional drawing api for the web.",
"module": "build/two.module.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"build/two.js",
"build/two.min.js",
"build/two.module.js",
"extras",
"src"
],
"directories": {
"doc": "documentation",
"test": "tests",
"example": "utils"
},
"keywords": [
"svg",
"canvas2d",
"webgl",
"animation",
"rendering",
"scenegraph",
"motiongraphics",
"visualization",
"dom",
"w3c"
],
"homepage": "https://two.js.org/",
"author": {
"name": "jonobr1",
"url": "http://jonobr1.com/"
},
"main": "build/two.js",
"repository": {
"type": "git",
"url": "https://github.com/jonobr1/two.js"
},
"bugs": {
"url": "https://github.com/jonobr1/two.js/issues"
},
"license": "MIT",
"devDependencies": {
"animation-frame": "^0.1.7",
"blueimp-canvas-to-blob": "^2.1.0",
"jsdoc": "~3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"moment": "^2.22.2",
"node-minify": "^2.0.3",
"qunitjs": "^2.4.0",
"resemblejs": "^1.1.1",
"underscore": "^1.9.1"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/jonobr1/two.js.git",
"fileMap": [
{
"basePath": "build",
"files": [
"two*.js"
]
}
]
}
}