-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
36 lines (36 loc) · 884 Bytes
/
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
{
"name": "gifuct-js",
"version": "2.1.2",
"description": "Easy to use efficient .GIF parsing in javascript",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"build-demo": "webpack demo/demo.js -o demo/demo.build.js --mode=\"none\""
},
"repository": {
"type": "git",
"url": "https://github.com/matt-way/gifuct-js.git"
},
"keywords": [
"gif",
"parser",
"javascript"
],
"author": "Matt Way",
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-way/gifuct-js/issues"
},
"homepage": "https://github.com/matt-way/gifuct-js",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"js-binary-schema-parser": "^2.0.3"
}
}