-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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": "tinygradient-es",
"version": "1.0.0",
"author":{
"name": "Ali Safari",
"email": "[email protected]",
"url": "https://www.alisafari.ir"
},
"description": "Fast and small gradients manipulation, built on top of TinyColor",
"license": "MIT",
"homepage": "https://github.com/asafari72/tinygradient-es",
"main": "index.js",
"browser": "browser.js",
"types": "types.d.ts",
"files": [
"browser.js",
"browser.js.map",
"index.js",
"types.d.ts"
],
"dependencies": {
"@types/tinycolor2": "^1.4.0",
"tinycolor2": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"colorbrewer": "^1.3.0",
"live-server": "^1.2.1",
"mocha": "^10.0.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.0.2",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^10.0.0"
},
"keywords": [
"color",
"gradient"
],
"repository": {
"type": "git",
"url": "git://github.com/asafari72/tinygradient-es"
},
"bugs": {
"url": "https://github.com/asafari72/tinygradient-es/issues"
},
"scripts": {
"test": "mocha tests/*",
"compile": "rollup --config rollup.config.js",
"serve": "live-server --watch=browser.js,index.html --entry-file=index.html",
"start": "npm-run-all --parallel watch serve",
"watch": "nodemon --watch index.js --exec \"npm run compile\""
}
}