-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.19 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
{
"name": "@olton/color",
"description": "Color Manipulation library",
"private": false,
"version": "1.0.3",
"license": "MIT",
"author": "Serhii Pimenov <[email protected]> (https://pimenov.com.ua)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/olton/color.git"
},
"keywords": [
"color",
"metroui",
"js",
"less",
"css",
"html"
],
"files": [
"dist"
],
"main": "./dist/color.cjs.js",
"module": "./dist/color.es.js",
"funding": [
{
"type": "paypal",
"url": "[email protected]"
},
{
"type": "patreon",
"url": "https://www.patreon.com/metroui"
},
{
"type": "subscription",
"url": "https://korzh.com/metroui#licensing"
}
],
"scripts": {
"build": "npm run clear && cross-env MODE=production rollup -c",
"dev": "npm run clear && cross-env MODE=development rollup -c",
"watch": "cross-env MODE=development rollup -c -w",
"pub": "npm publish --access public",
"clear": "shx rm -rf lib/* dist/*"
},
"devDependencies": {
"path": "^0.12.7",
"shx": "^0.3.4",
"cross-env": "^7.0.3",
"rollup-plugin-terser": "^7.0.2"
}
}