forked from NimaSoroush/differencify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "differencify",
"version": "1.5.1",
"description": "Perceptual diffing tool",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prepare": "npm run build",
"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 --testPathIgnorePatterns integration.test",
"jest:integration": "jest --testPathPattern integration.test --config src/integration.tests/jest.config.js",
"test:integration": "docker build -t differencify . && docker run --volume \"$(pwd)/src/integration.tests\":/differencify/src/integration.tests -t differencify npm run jest:integration"
},
"repository": {
"type": "git",
"url": "[email protected]: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": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-jest": "^23.2.0",
"differencify-jest-reporter": "0.0.1",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "7.11.0",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^4.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"check-types": "^7.4.0",
"fs": "0.0.2",
"jimp": "^0.2.28",
"pkg-dir": "2.0.0",
"puppeteer": "^1.8.0",
"type-detect": "^4.0.8"
},
"jest": {
"rootDir": "src",
"transform": {
"^.+\\.js$": "babel-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">=8.9"
}
}