-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "node-px2rem-converter",
"description": "a tool which can convert px to rem used in css or less files.",
"version": "1.0.6",
"main": "./lib/convert.js",
"keywords": [
"px2rem",
"convert px to rem",
"px to rem"
],
"homepage": "https://github.com/sunqian1991/node-px2rem",
"bin": {
"px2rem": "./bin/px2rem.js"
},
"author": {
"name": "sunqian",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/sunqian1991/node-px2rem/issues/new",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sunqian1991/node-px2rem.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/.bin/babel-node ./src/convert.js",
"build": "webpack"
},
"license": "MIT",
"dependencies": {
"commander": "2.19.0",
"css": "2.2.4",
"js-yaml": "3.13.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.5",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-runtime": "6.26.0",
"copy-webpack-plugin": "4.6.0",
"eslint": "5.12.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"node-px2rem-converter": "0.0.2",
"webpack": "4.28.1",
"webpack-cli": "3.2.1"
}
}