forked from metafizzy/zdog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@cwittenb/zdog",
"version": "1.1.3",
"description": "Round, flat, designer-friendly pseudo-3D engine",
"main": "js/index.js",
"unpkg": "dist/zdog.dist.min.js",
"files": [
"dist/*.*",
"js/*.*",
"!js/.*",
"!dist/.*"
],
"devDependencies": {
"eslint": "^8.7.0",
"eslint-plugin-metafizzy": "^1.0.0",
"uglify-js": "^3.6.3"
},
"scripts": {
"bundle": "node tasks/bundle",
"dist": "npm run bundle && npm run uglify",
"lint": "npx eslint .",
"lintFix": "npx eslint . --fix",
"preversion": "npm run lint",
"version": "node tasks/version && npm run dist && git add -A dist js",
"test": "npm run lint",
"uglify": "npx uglifyjs dist/zdog.dist.js -o dist/zdog.dist.min.js --mangle --comments /^!/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cwittenb/zdog.git"
},
"publishConfig": {
"registry":"https://npm.pkg.github.com/",
"access": "public"
},
"keywords": [
"3D",
"canvas",
"svg"
],
"author": "David DeSandro",
"license": "MIT",
"bugs": {
"url": "https://github.com/cwittenb/zdog/issues"
},
"homepage": "https://zzz.dog"
}