-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 999 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
37
38
39
40
41
42
{
"name": "GifTools",
"version": "1.0.0",
"description": "Utilities for creating GIFs.",
"files": [
"dist/**/*"
],
"main": "dist/main.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VladSerhiienko/GifTools.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VladSerhiienko/GifTools/issues"
},
"homepage": "https://github.com/VladSerhiienko/GifTools#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"@types/node": "^14.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"babel-upgrade": "^1.0.1"
}
}