-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "matercolors",
"version": "2.3.0",
"description": "A tiny, zero-dependency libary for building harmonious material palettes for any color.",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"esmodule": "dist/index.modern.js",
"source": "src/index.js",
"scripts": {
"dev": "microbundle watch",
"build": "microbundle --name Matercolor --compress --raw true",
"lint": "standard --fix",
"test": "ava",
"demo": "node ./examples/index.js",
"coverage": "nyc npm run test"
},
"ava": {
"require": [
"esm"
],
"files": [
"test/**/*"
],
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"verbose": true
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arvindcheenu/Matercolors.git"
},
"keywords": [
"material",
"color",
"palette",
"design",
"node",
"javascript",
"browser",
"generator"
],
"author": "Arvind Srinivasan <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/arvindcheenu/Matercolors/issues"
},
"homepage": "https://github.com/arvindcheenu/Matercolors#readme",
"devDependencies": {
"ava": "^3.13.0",
"babel-preset-env": "^1.7.0",
"esm": "^3.2.25",
"microbundle": "^0.12.4",
"nyc": "^15.1.0",
"standard": "^14.3.4"
}
}