-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "rework-rem2px",
"description": "Convert rem unit to px for old IE versions.",
"version": "0.0.1",
"homepage": "https://github.com/nfroidure/rework-rem2px",
"author": {
"name": "Nicolas Froidure",
"url": "http://www.insertafter.com/blog.html"
},
"repository": {
"type": "git",
"url": "git://github.com/nfroidure/rework-rem2px.git"
},
"bugs": {
"url": "https://github.com/nfroidure/rework-rem2px/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nfroidure/rework-rem2px/blob/master/LICENSE"
}
],
"main": "src/index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha tests/*.mocha.js",
"coveralls": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000"
},
"keywords": [
"rework",
"css",
"rem"
],
"dependencies": {
"rework-visit": "~1.0.0"
},
"devDependencies": {
"mocha": "~1.17.1",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.7.1",
"istanbul": "~0.2.4",
"rework": "^0.20.2"
}
}