forked from NimaSoroush/differencify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.58 KB
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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "differencify",
"version": "1.1.3",
"description": "Perceptual diffing tool",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"build": "babel src --source-maps --out-dir dist --ignore '**/*.test.js'",
"build-docs": "mkdir -p docs && jsdoc2md src/*.js > docs/api.md",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:NimaSoroush/differencify.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"Perceptual diffing tool",
"Visual test",
"Nodejs",
"Chrome",
"ChromeHeadless",
"Puppeteer"
],
"author": "Nima Soroush",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.5.2",
"babel-preset-jest": "^20.0.3",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "6.6.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.1",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^2.0.1"
},
"dependencies": {
"chalk": "^2.0.1",
"check-types": "^7.2.0",
"fs": "0.0.1-security",
"jimp": "^0.2.28",
"puppeteer": "^0.9.0",
"type-detect": "^4.0.3"
},
"jest": {
"rootDir": "src",
"transform": {
"^.+\\.js$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">=8.6"
}
}