-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·82 lines (82 loc) · 2 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": "canvas-controls",
"version": "0.0.1",
"description": "A web module that adds controls to the <canvas> object",
"main": "canvascontrols.js",
"author": "V. H.",
"scripts": {
"test": "node test/index.js",
"start": "npx babel dist/ -d dist/babel -w --ignore dist/CanvasControls.bundle.js,dist/polyfill.min.js,dist/babel",
"xpack": "npx webpack",
"xtsc": "npx tsc -w -d",
"xpose": "showdown makehtml -i README.md -o readme.htm",
"jsdoc": "npm run xpose && npx jsdoc dist/ -c jsdoc.config.json -R readme.htm"
},
"types": "./lib/typings/CanvasControls.d.ts",
"keywords": [
"canvas",
"2d",
"web",
"controls"
],
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.2.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"awesome-typescript-loader": "^5.2.1",
"babel-preset-minify": "^0.5.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"jsdoc": "^3.5.5",
"webpack-cli": "^3.1.2",
"showdown": "^1.9.0"
},
"browser": true,
"optionalDependencies": {},
"homepage": "https://github.com/Valen-H/CanvasControls#README.md",
"bugs": {
"url": "https://github.com/Valen-H/CanvasControls/issues",
"email": "alternativexxxy@gmail.com"
},
"contributors": [],
"files": [
"*"
],
"bin": {},
"man": [],
"directories": {
"lib": "./lib",
"bin": "./bin",
"man": "./doc",
"doc": "./doc",
"example": "./test",
"test": "./test"
},
"typings": "lib/typings/",
"repository": {
"type": "git",
"url": "git://github.com/Valen-H/CanvasControls.git",
"directory": "./"
},
"config": {
"port": 8080
},
"peerDependencies": {},
"engines": {
"node": ">=12.0.0",
"npm": ">=3.0.0"
},
"engineStrict": false,
"os": [],
"cpu": [],
"preferGlobal": false,
"private": false,
"publishConfig": {},
"bundleDependencies": []
}