-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
44 lines (44 loc) · 1009 Bytes
/
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
{
"name": "@percy/dom",
"version": "1.0.0-beta.2",
"main": "dist/index.js",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "webpack",
"lint": "eslint --ignore-path ../../.gitignore .",
"test": "cross-env NODE_ENV=test karma start --single-run",
"test:coverage": "yarn test --coverage"
},
"publishConfig": {
"access": "public"
},
"babel": {
"extends": "../../babel.config.js",
"presets": [
[
"@babel/env",
{
"targets": "last 2 version"
}
]
]
},
"devDependencies": {
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.3",
"interactor.js": "^1.6.0",
"karma": "^5.0.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"regenerator-runtime": "^0.13.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}