forked from gka/chroma.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "chroma-js",
"description": "JavaScript library for color conversions",
"version": "2.7.0",
"author": "Gregor Aisch",
"type": "commonjs",
"homepage": "https://github.com/regorxxx/chroma.js",
"keywords": [
"color"
],
"contributors": [
{
"name": "regorxxx",
"email": "[email protected]",
"url": "https://github.com/regorxxx"
}
],
"maintainers": [
{
"name": "regorxxx",
"email": "[email protected]",
"web": "https://github.com/regorxxx"
}
],
"bugs": "https://github.com/regorxxx/chroma.js/issues",
"repository": {
"type": "git",
"url": "git://github.com/regorxxx/chroma.js.git"
},
"main": "chroma.js",
"scripts": {
"prepublishOnly": "npm run build && npm test",
"build": "rollup -c && cross-env DEV=1 rollup -c ",
"docs": "cd docs && make",
"docs-preview": "cd docs && make && make preview",
"test": "vows --dot-matrix test/*.js",
"lint": "eslint index.js index-light.js src",
"preinstall": "npx npm-force-resolutions",
"postinstall": "cd node_modules && cp -R @jridgewell/sourcemap-codec sourcemap-codec && cp -R @cypress/request request && cp -R ../docs/libs/markdown-to-html ./"
},
"devDependencies": {
"npm-force-resolutions": "0.0.10",
"@babel/eslint-parser": "^7.16.5",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"cross-env": "^7.0.3",
"es6-shim": "^0.35.6",
"eslint": "^8.7.0",
"http-server": "^14.1.0",
"husky": "^1.2.1",
"markdown-to-html": "0.0.13",
"minimatch": "^3.1.2",
"rollup": "^2.66.1",
"rollup-plugin-license": "^3.2.0",
"rollup-plugin-terser": "^7.0.2",
"vows": "^0.8.2",
"@cypress/request": "^3.0.0"
},
"resolutions": {
"open": ">=6.0.0",
"marked": "^4.0.10",
"bl": "^1.2.3",
"tough-cookie": "^4.1.3",
"uuid": "^7.0.0",
"request": "@cypress/request@^3.0.0",
"sourcemap-codec": "@jridgewell/sourcemap-codec@^1.4.15"
},
"license": "(BSD-3-Clause AND Apache-2.0)",
"spm": {
"main": "chroma.js",
"ignore": [
"src",
"doc",
"test"
]
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"svelteSortOrder": "options-scripts-styles-markup"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}