-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "enb-css-preprocessor",
"version": "1.0.0",
"description": "ENB css preprocessor",
"keywords": [
"enb",
"css",
"preprocessor"
],
"author": "Eugene Gavryushin <[email protected]>",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/enb/enb-css-preprocessor/blob/master/LICENSE.txt"
}
],
"repository": {
"type": "git",
"url": "git://github.com/enb/enb-css-preprocessor.git"
},
"homepage": "https://github.com/enb/enb-css-preprocessor",
"bugs": "https://github.com/enb/enb-css-preprocessor/issues",
"maintainers": [
{
"name": "Eugene Gavryushin",
"email": "[email protected]",
"github-username": "egavr"
}
],
"engines": {
"node": ">= 0.10.0"
},
"peerDependencies": {
"enb": ">=0.16.0 <2.0.0"
},
"dependencies": {
"inherit": "2.2.2",
"vow": "0.4.11",
"vow-fs": "0.3.4"
},
"devDependencies": {
"jscs": "2.2.1",
"jshint": "2.8.0"
},
"main": "./lib/index.js",
"scripts": {
"lint": "jshint . && jscs .",
"test": "npm run lint"
}
}