-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 769 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 769 Bytes
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
{
"name": "colorful",
"version": "1.0.0",
"description": "I was looking for an easy-to-use color manipulation library for one of my projects. The library had to have these five features:",
"main": "src/colorful.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "mocha tests/*.js",
"build": "rollup --config"
},
"type": "module",
"keywords": [
"color manipulation",
"javascript"
],
"author": "Nitish Kumar",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"rollup": "^4.29.1"
}
}