-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "@herrfugbaum/cato",
"version": "0.1.4",
"description": "Small, dependency-free library for (image) comparison sliders.",
"main": "dest/cato.min.js",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"build-dev": "webpack --config webpack.config.js --mode=development",
"test": "jest && codecov",
"watch-test": "jest"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/herrfugbaum/cato.js.git"
},
"keywords": [
"image comparison",
"comparison",
"slider",
"before-after"
],
"author": "Pascal Spiesz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/herrfugbaum/cato.js/issues"
},
"homepage": "https://github.com/herrfugbaum/cato.js#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"css-loader": "^1.0.1",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "^1.14.3",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {},
"jest": {
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dest/",
"<rootDir>/examples/"
],
"collectCoverage": true,
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js"
}
}
}