forked from Adrinlol/javascript-color-gradient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "javascript-color-gradient",
"version": "1.3.1",
"description": "javascript-color-gradient is a lightweight JavaScript library, used to generate an array of color gradients by providing start and finish colors, as well as the required number of midpoints. ",
"main": "src/index.js",
"scripts": {
"test": "mocha src/index.test.js -w",
"prebuild": "rimraf src",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir src --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filname index.umd.min.js -p"
},
"repository": {
"type": "git",
"url": "https://github.com/Adrinlol/javascript-color-gradient.git"
},
"keywords": [
"javascript-color-palette",
"color-gradient",
"react-palette",
"color-picker",
"color-wavelengths"
],
"author": "Lasha Kakabadze <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Adrinlol/javascript-color-gradient/issues"
},
"homepage": "https://github.com/Adrinlol/javascript-color-gradient#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "8.1.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.2.0",
"mocha": "7.1.2",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}