-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "pxlint",
"version": "0.1.0",
"description": "检查页面效果与设计稿是否相符合",
"main": "lib/pxlint.js",
"bin": {
"pxlint": "bin/cli.js"
},
"scripts": {
"test": "ava",
"compile": "babel src -d lib --watch",
"prepublishOnly": "babel src -d lib",
"lint": "eslint src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/75team/pxlint.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/75team/pxlint/issues"
},
"homepage": "https://github.com/75team/pxlint#readme",
"dependencies": {
"blueimp-md5": "^2.10.0",
"colors": "^1.2.1",
"hamming-distance": "^1.0.0",
"imghash": "^0.0.3",
"pixelmatch": "^4.0.2",
"puppeteer": "^1.1.1",
"request": "^2.85.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.1",
"eslint-config-75team": "^1.0.22",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-vue": "^4.4.0",
"pngjs": "^3.3.2"
}
}