-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1019 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
{
"name": "enb-css-hash",
"version": "0.0.1",
"author": "Vladimir Grinenko <i@tadatuta.com>",
"description": "ENB tech to build a hash with entities as a key and CSS inlined as a value",
"main": "techs/css-hash.js",
"repository": {
"type": "git",
"url": "git://github.com/tadatuta/enb-css-hash.git"
},
"homepage": "https://github.com/tadatuta/enb-css-hash",
"bugs": "https://github.com/tadatuta/enb-css-hash/issues",
"licenses": [
{
"type": "MPL-2.0",
"url": "https://github.com/tadatuta/enb-css-hash/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">= 4"
},
"peerDependencies": {
"enb": ">= 0.16.0 <2.0.0"
},
"dependencies": {
"vow": "^0.4.15"
},
"devDependencies": {
"enb": "^1.5.1",
"eslint": "^3.19.0",
"eslint-config-pedant": "^0.8.0",
"mocha": "^3.2.0",
"mock-enb": "^0.3.6",
"mock-fs": "^4.2.0"
},
"scripts": {
"lint": "eslint .",
"unit": "mocha",
"test": "npm run lint && npm run unit"
}
}