-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "gif-codec",
"version": "0.0.1",
"description": "GIF encoder/decoder",
"browser": "dist/main.js",
"scripts": {
"test": "jest",
"lint": "eslint src/*.js test/*.js",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch --info-verbosity verbose",
"serve": "http-server -c-1 dist"
},
"repository": {
"type": "git",
"url": "git://github.com/potomak/gif-codec.git"
},
"keywords": [
"gif"
],
"author": "Giovanni Cappellotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/potomak/gif-codec/issues"
},
"homepage": "https://github.com/potomak/gif-codec",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.4",
"eslint": "^5.6.1",
"eslint-plugin-jest": "^21.24.1",
"http-server": "^0.11.1",
"jest": "^23.6.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}