-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@entryline/gifstream",
"version": "1.2.2",
"description": "A JavaScript library for creating high resolution GIFs",
"main": "./src/js/gif.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/entryLine/gifstream.git"
},
"keywords": [
"web-streams",
"gif",
"js"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/entryLine/gifstream/issues"
},
"homepage": "https://github.com/entryLine/gifstream#readme",
"dependencies": {
"bluebird": "^3.5.1",
"web-streams-polyfill": "^2.0.4"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-import": "^0.13.0",
"eslint-config-node": "^4.1.0",
"eslint-config-promise": "^2.0.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0"
},
"browser": {
"gifwriter": "./src/dependencies/gifwriter.js",
"neuquant": "./src/dependencies/neuquant.js"
}
}