forked from jonobr1/two.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.78 KB
/
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
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
74
75
76
77
78
79
80
81
82
{
"name": "@jonobr1/two.js",
"version": "v0.8.0-dev",
"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"
],
"scripts": {
"build": "node ./utils/build",
"docs:generate": "node ./utils/document",
"docs:dev": "vuepress dev wiki",
"docs:build": "vuepress build wiki",
"lint": "eslint ."
},
"directories": {
"doc": "wiki/documentation",
"test": "tests",
"example": "wiki/examples"
},
"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": {
"@vuepress/plugin-active-header-links": "^1.4.1",
"@vuepress/plugin-medium-zoom": "^1.4.1",
"@vuepress/plugin-nprogress": "^1.4.1",
"eslint": "^6.8.0",
"jsdoc-api": "^5.0.4",
"qunit": "^2.9.3",
"resemblejs": "^3.2.4",
"rollup": "^1.27.9",
"rollup-plugin-terser": "^5.3.0",
"underscore": "^1.10.2",
"vuepress": "^1.4.1"
},
"autoupdate": {
"source": "git",
"target": "git://github.com/jonobr1/two.js.git",
"fileMap": [
{
"basePath": "build",
"files": [
"two*.js"
]
}
]
}
}