forked from gdnmobilelab/png-pong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "dekapng",
"version": "1.1.0",
"main": "dist/dekapng.js",
"description": "Library to make giant PNGs in browser",
"module": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/expect": "^1.20.1",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.14",
"adler32": "^0.1.7",
"base64-js": "^1.2.0",
"expect": "^1.20.2",
"html-webpack-plugin": "^2.28.0",
"jsdoc": "^3.4.3",
"mocha": "^3.3.0",
"mocha-typescript": "^1.1.0",
"pngjs": "^3.2.0",
"ts-loader": "^2.0.3",
"typedoc": "^0.7.1",
"typescript": "^2.9.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/greggman/dekapng.git"
},
"keywords": [
"png"
],
"files": [
"dist/dekapng.js"
],
"author": "Greggman",
"bugs": {
"url": "https://github.com/greggman/dekapng/issues"
},
"homepage": "https://github.com/greggman/dekapng",
"scripts": {
"build": "webpack",
"tests-node": "mocha-typescript-watch -o mocha.opts",
"demo": "webpack-dev-server './demo/demo.ts' --module-bind ts=ts-loader --output-filename test.js --plugin html-webpack-plugin --resolve-extensions '.js,.ts,.json' --no-inline --devtool source-map",
"generate-docs": "typedoc --out docs --mode file --excludeExternals --excludePrivate --exclude 'test/**' ./src/index.ts"
}
}