-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
49
50
51
52
53
54
55
{
"name": "gradient-generator-ui",
"version": "1.0.5",
"main": "lib/index.js",
"unpkg": "dist/gradient-generator.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "yarn build:dist && yarn build:lib",
"build:lib": "tsc --outDir lib",
"build:dist": "webpack --mode production",
"start:dev": "webpack --mode development --watch",
"deploy:docs": "gh-pages -d examples"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"mini-css-extract-plugin": "^1.3.3",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"typescript": "^4.1.3",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0",
"gh-pages": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EdisonPeM/gradient-generator-ui.git"
},
"files": [
"LICENSE",
"README.md",
"/dist",
"/lib"
],
"keywords": [
"front-end",
"colors",
"color-gradient",
"gradient",
"gradient-generator"
],
"author": "Edison Peñuela <edisonpe961206@hotmail.com>",
"description": "Library to create a gradient generator in vanilla-js with interactive user interface in html",
"license": "MIT",
"bugs": {
"url": "https://github.com/EdisonPeM/gradient-generator-ui/issues"
},
"homepage": "https://github.com/EdisonPeM/gradient-generator-ui#readme"
}