-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 993 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 993 Bytes
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
{
"name": "Common",
"version": "1.4",
"description": "The node.js version of my common functions.",
"main": "build/common.js",
"repository": {
"type": "git",
"url": "https://github.com/anhr/commonNodeJS"
},
"scripts": {
"build": "rollup -c rollup.config.js && rollup -c rollup.config.min.js"
},
"keywords": [
"Common",
"common.js",
"javascript",
"3d",
"webgl",
"webgl2",
"webgpu",
"canvas",
"html5"
],
"author": "Andrej Hristoliubov https://github.com/anhr",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/anhr/commonNodeJS/issues"
},
"homepage": "https://github.com/anhr/commonNodeJS",
"devDependencies": {
"rollup": "^2.77.2"
},
"jspm": {
"files": [
"package.json",
"LICENSE",
"README.md",
"build/common.js",
"build/common.min.js",
"build/common.module.js"
],
"directories": {}
},
"dependencies": {
"uglify-es": "^3.3.10"
}
}