This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 1.89 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
{
"name": "roosevelt-less",
"description": "LESS CSS preprocessor support for Roosevelt MVC web framework",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/roosevelt-less/graphs/contributors"
}
],
"version": "0.8.0",
"files": [
"roosevelt-less.js"
],
"homepage": "https://github.com/rooseveltframework/roosevelt-less",
"license": "CC-BY-4.0",
"main": "roosevelt-less.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true,
"dependencies": {
"less": "~3.10.3"
},
"devDependencies": {
"c8": "~6.0.1",
"codecov": "~3.6.1",
"eslint": "~6.7.0",
"eslint-plugin-mocha": "~6.2.1",
"fs-extra": "~8.1.0",
"husky": "~3.1.0",
"lint-staged": "~9.5.0",
"mocha": "~6.2.2",
"roosevelt": "~0.15.1",
"standard": "~14.3.1"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/roosevelt-less.git"
},
"keywords": [
"roosevelt.js",
"less.js",
"node.js",
"less",
"css",
"preprocessor"
],
"preferGlobal": true,
"_from": "roosevelt-less@*",
"gitHead": "",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017
},
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": "error"
}
},
"scripts": {
"codecov": "./node_modules/.bin/codecov",
"coverage": "c8 --reporter=text --reporter=lcov mocha --timeout 25000 test/unit",
"lint": "standard && eslint ./test/unit",
"test": "mocha --timeout 25000 test/unit"
},
"lint-staged": {
"*.js": "standard && eslint ./test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && eslint ./test"
}
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/kethinov"
}
}