-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1016 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
{
"name": "flame-gradient",
"version": "1.0.0",
"description": "Input a number between 0 and 1, get an rgb value on a smooth gradient from dark to bright",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && tap --no-cov test/test.js",
"view": "node test/view.js",
"cov": "tap --100 test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlanSl/flame-gradient.git"
},
"keywords": [
"gradient",
"color",
"visualization",
"easing",
"gradient"
],
"author": "Alan Slater",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlanSl/flame-gradient/issues"
},
"homepage": "https://github.com/AlanSl/flame-gradient#readme",
"dependencies": {
"sinusoidal-decimal": "^1.0.0"
},
"devDependencies": {
"ajv": "^6.5.4",
"browserify": "^16.2.2",
"opn": "^5.4.0",
"pump": "^3.0.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"stream-template": "0.0.10",
"tap": "^12.0.1"
}
}