-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "material-palette",
"version": "1.0.0",
"description": "Generate material palettes for your colors",
"main": "index.js",
"jsnext:main": "index.m.js",
"author": "Leo Di Donato <leodidonato@gmail.com> (http://github.com/leodido)",
"repository": "leodido/material-palette",
"bugs": {
"url": "/~https://github.com/leodido/material-palette/issues"
},
"homepage": "/~https://github.com/leodido/material-palette",
"license": "MIT",
"scripts": {
"clean": "rm -f index.js *.log && rm -rf coverage .nyc_output",
"lint": "eslint index.m.js test.js rollup.config.js",
"develop": "BUILD_ENV=develop rollup -c rollup.config.js -o index.js",
"distrib": "rollup -c rollup.config.js -o index.js",
"pretest": "npm run lint && npm run develop",
"test": "nyc ava --verbose --serial",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"report": "nyc report --reporter=html",
"changelog": "conventional-changelog -p eslint -i CHANGELOG.md -s",
"prepublish": "npm run distrib"
},
"dependencies": {},
"devDependencies": {
"ava": "0.14.x",
"babel-eslint": "6.0.x",
"babel-preset-es2015-rollup": "1.1.x",
"coveralls": "2.11.x",
"eslint": "2.8.x",
"eslint-config-defaults": "9.0.x",
"nyc": "6.4.x",
"rollup": "0.25.x",
"rollup-plugin-babel": "2.4.x",
"conventional-changelog-cli": "1.1.x"
},
"eslintConfig": {
"extends": "eslint-config-defaults",
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"globals": {},
"env": {
"es6": true
}
},
"engines": {
"node": ">=0.12.0"
},
"keywords": [
"material design",
"palette",
"colors",
"generator",
"material colors",
"material palette",
"material",
"MD",
"HSL",
"material palette generator"
]
}