-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 963 Bytes
/
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
{
"name": "pantone-table",
"version": "1.0.0",
"description": "a lookup table of pantone colors",
"main": "dist/pantone-table.js",
"module": "dist/pantone-table.es.js",
"exports": {
"import": "./dist/pantone-table.es.js",
"require": "./dist/pantone-table.js"
},
"sideEffects": false,
"scripts": {
"build": "node scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad-experiments/pantone-table.git"
},
"author": "Kiril Vatev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catdad-experiments/pantone-table/issues"
},
"homepage": "https://github.com/catdad-experiments/pantone-table#readme",
"devDependencies": {
"pantoner": "^1.1.2",
"postcss-color-pantone": "^0.1.0",
"rootrequire": "^1.0.0"
},
"dependencies": {},
"keywords": [
"pantone",
"color",
"coated",
"uncoated"
],
"files": [
"dist"
]
}