-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "less-plugin-css-george",
"version": "2.1.0",
"description": "A plugin for Less to allow runtime manipulation of variables.",
"main": "index.js",
"author": "Darryl Pogue <[email protected]>",
"contributors": [
"Sam Evanuk <[email protected]>"
],
"license": "MIT",
"repository": "github:css-george/less-plugin-css-george",
"files": [
"index.js"
],
"keywords": [
"css",
"lesscss",
"less-plugin",
"lesscss-plugin",
"css-george",
"css variables"
],
"scripts": {
"lint": "eslint .",
"test": "tap test/*.js",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"less": ">= 2.7.2"
},
"peerDependencies": {
"less": "^2.7.2 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"less2": "npm:less@^2.7.2",
"less3": "npm:less@^3.0.0",
"less4": "npm:less@^4.0.0",
"tap": "^16.0.0"
},
"tap": {
"check-coverage": true,
"reporter": "spec"
}
}