-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 969 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
41
42
{
"name": "theme-color-generator",
"version": "2.2.0",
"description": "This a script to generate color specific styles less file and which you can use to change theme dynamically in browser",
"keywords": [
"color",
"css",
"dynamic-theme",
"generator",
"less",
"theme",
"theme-color"
],
"repository": {
"type": "git",
"url": "git://github.com/kingller/theme-color-generator.git"
},
"license": "ISC",
"author": {
"name": "Kingller Tang",
"url": "https://github.com/kingller"
},
"files": [
"index.js",
"package.json",
"README.md"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"clean-css": "^5.3.2",
"glob": "^10.3.3",
"hash.js": "^1.1.7",
"less": "^4.2.0",
"less-bundle-promise": "^1.0.11",
"less-plugin-npm-import": "^2.1.0",
"less-vars-to-js": "^1.3.0",
"postcss": "^8.4.27"
}
}