-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
{
"name": "kewler",
"version": "1.0.8",
"description": "Simple functional and immutable color manipulation library",
"main": "dist/index.js",
"jsnext:main": "dist/es.js",
"ava": {
"files": [
"test/**/*.js",
"!test/fixtures.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"test": "xo && NODE_ENV=test nyc --cache --reporter=text ava",
"prepublish": "npm run build",
"build": "rm -rf dist/ && rollup -c"
},
"keywords": [
"simple",
"immutable",
"functional",
"programming",
"fp",
"functional programming",
"color",
"manipulation",
"colour",
"darken",
"lightness",
"lighten",
"saturation",
"hue",
"css"
],
"author": "Adrien Antoine <adriantoine@gmail.com>",
"license": "ISC",
"dependencies": {
"hex-to-hsl": "^1.0.2",
"hsl-to-hex": "^1.0.0",
"lodash.flow": "^3.3.0",
"lodash.isarray": "^4.0.0",
"lodash.isfunction": "^3.0.8"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.8.0",
"coveralls": "^2.11.15",
"nyc": "^10.0.0",
"rollup": "^0.38.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"xo": "^0.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriantoine/kewler.git"
},
"bugs": {
"url": "https://github.com/adriantoine/kewler/issues"
},
"homepage": "https://github.com/adriantoine/kewler#readme"
}