-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "values.js",
"version": "2.1.1",
"description": "Get tints and shades of a CSS color",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.cjs.js",
"dist/index.esm.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"sideEffects": false,
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha test/*",
"test:watch": "npm test -- -w",
"coverage": "nyc npm run test && nyc report --reporter=lcov",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"tints",
"shades",
"tint",
"shade",
"css",
"color",
"hex",
"rgb",
"rgba",
"hsl",
"hsla",
"alpha",
"mix"
],
"author": "Noel Delgado <[email protected]> (http://pixelia.me)",
"homepage": "http://noeldelgado.github.io/values.js/",
"repository": {
"type": "git",
"url": "https://github.com/noeldelgado/values.js.git"
},
"bugs": {
"url": "https://github.com/noeldelgado/values.js/issues"
},
"dependencies": {
"mix-css-color": "0.2.0",
"parse-css-color": "0.2.0",
"pure-color": "1.3.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"eslint": "^7.0.0",
"eslint-config-rollup": "^0.1.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"rollup": "^2.8.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.0.1"
}
}