|
1 | 1 | { |
2 | | - "name": "karmatic", |
3 | | - "version": "1.4.0", |
4 | | - "description": "Zero-config automatic (headless) browser testing. Powered by Karma, Webpack & Jasmine.", |
5 | | - "main": "dist/index.js", |
6 | | - "module": "dist/index.m.js", |
7 | | - "bin": "dist/cli.js", |
8 | | - "scripts": { |
9 | | - "prepare": "npm t", |
10 | | - "build": "microbundle --target node -f cjs --no-compress src/*.js", |
11 | | - "test:build": "node ./dist/cli.js run", |
12 | | - "test:watch": "node ./dist/cli.js watch --headless false", |
13 | | - "test": "eslint src test && npm run -s build && npm run -s test:build", |
14 | | - "release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish" |
15 | | - }, |
16 | | - "eslintConfig": { |
17 | | - "extends": "eslint-config-developit" |
18 | | - }, |
19 | | - "keywords": [ |
20 | | - "karma", |
21 | | - "chrome", |
22 | | - "test runner" |
23 | | - ], |
24 | | - "files": [ |
25 | | - "dist" |
26 | | - ], |
27 | | - "author": "Jason Miller <[email protected]> (http://jasonformat.com)", |
28 | | - "repository": "developit/karmatic", |
29 | | - "license": "MIT", |
30 | | - "devDependencies": { |
31 | | - "eslint": "^4.16.0", |
32 | | - "eslint-config-developit": "^1.1.1", |
33 | | - "microbundle": "^0.11.0", |
34 | | - "webpack": "^4.39.3", |
35 | | - "workerize-loader": "^1.1.0" |
36 | | - }, |
37 | | - "dependencies": { |
38 | | - "@babel/core": "^7.5.5", |
39 | | - "@babel/plugin-proposal-object-rest-spread": "^7.5.5", |
40 | | - "@babel/plugin-transform-react-jsx": "^7.3.0", |
41 | | - "@babel/polyfill": "^7.4.4", |
42 | | - "@babel/preset-env": "^7.5.5", |
43 | | - "@babel/preset-stage-0": "^7.0.0", |
44 | | - "babel-loader": "^8.0.6", |
45 | | - "babel-plugin-istanbul": "^5.2.0", |
46 | | - "chalk": "^2.3.0", |
47 | | - "dlv": "^1.1.3", |
48 | | - "istanbul-instrumenter-loader": "^3.0.1", |
49 | | - "jasmine-core": "^3.3.0", |
50 | | - "karma": "^4.3.0", |
51 | | - "karma-chrome-launcher": "^3.1.0", |
52 | | - "karma-coverage": "^2.0.1", |
53 | | - "karma-firefox-launcher": "^1.2.0", |
54 | | - "karma-jasmine": "^2.0.1", |
55 | | - "karma-sauce-launcher": "^2.0.2", |
56 | | - "karma-sourcemap-loader": "^0.3.7", |
57 | | - "karma-spec-reporter": "0.0.32", |
58 | | - "karma-webpack": "^4.0.2", |
59 | | - "minimatch": "^3.0.4", |
60 | | - "puppeteer": "^1.19.0", |
61 | | - "sade": "^1.6.1", |
62 | | - "script-loader": "^0.7.2" |
63 | | - }, |
64 | | - "peerDependencies": { |
65 | | - "webpack": ">=4" |
66 | | - } |
| 2 | + "name": "karmatic", |
| 3 | + "version": "1.4.0", |
| 4 | + "description": "Zero-config automatic (headless) browser testing. Powered by Karma, Webpack & Jasmine.", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/index.m.js", |
| 7 | + "bin": "dist/cli.js", |
| 8 | + "scripts": { |
| 9 | + "prepare": "npm t", |
| 10 | + "build": "microbundle --target node -f cjs --no-compress src/*.js", |
| 11 | + "test:build": "node ./dist/cli.js run", |
| 12 | + "test:watch": "node ./dist/cli.js watch --headless false", |
| 13 | + "prettier": "prettier --write './**/*.{js,json,yml,md}'", |
| 14 | + "test": "prettier --check './**/*.{js,json,yml,md}' && eslint src test && npm run -s build && npm run -s test:build", |
| 15 | + "release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish" |
| 16 | + }, |
| 17 | + "eslintConfig": { |
| 18 | + "extends": [ |
| 19 | + "eslint-config-developit", |
| 20 | + "prettier" |
| 21 | + ] |
| 22 | + }, |
| 23 | + "keywords": [ |
| 24 | + "karma", |
| 25 | + "chrome", |
| 26 | + "test runner" |
| 27 | + ], |
| 28 | + "files": [ |
| 29 | + "dist" |
| 30 | + ], |
| 31 | + "author": "Jason Miller <[email protected]> (http://jasonformat.com)", |
| 32 | + "repository": "developit/karmatic", |
| 33 | + "license": "MIT", |
| 34 | + "devDependencies": { |
| 35 | + "eslint": "^4.16.0", |
| 36 | + "eslint-config-developit": "^1.1.1", |
| 37 | + "eslint-config-prettier": "^6.10.0", |
| 38 | + "microbundle": "^0.11.0", |
| 39 | + "prettier": "^1.19.1", |
| 40 | + "webpack": "^4.39.3", |
| 41 | + "workerize-loader": "^1.1.0" |
| 42 | + }, |
| 43 | + "dependencies": { |
| 44 | + "@babel/core": "^7.5.5", |
| 45 | + "@babel/plugin-proposal-object-rest-spread": "^7.5.5", |
| 46 | + "@babel/plugin-transform-react-jsx": "^7.3.0", |
| 47 | + "@babel/polyfill": "^7.4.4", |
| 48 | + "@babel/preset-env": "^7.5.5", |
| 49 | + "@babel/preset-stage-0": "^7.0.0", |
| 50 | + "babel-loader": "^8.0.6", |
| 51 | + "babel-plugin-istanbul": "^5.2.0", |
| 52 | + "chalk": "^2.3.0", |
| 53 | + "dlv": "^1.1.3", |
| 54 | + "expect": "^24.9.0", |
| 55 | + "istanbul-instrumenter-loader": "^3.0.1", |
| 56 | + "jasmine-core": "^3.3.0", |
| 57 | + "karma": "^4.3.0", |
| 58 | + "karma-chrome-launcher": "^3.1.0", |
| 59 | + "karma-coverage": "^2.0.1", |
| 60 | + "karma-firefox-launcher": "^1.2.0", |
| 61 | + "karma-jasmine": "^2.0.1", |
| 62 | + "karma-sauce-launcher": "^2.0.2", |
| 63 | + "karma-sourcemap-loader": "^0.3.7", |
| 64 | + "karma-spec-reporter": "0.0.32", |
| 65 | + "karma-webpack": "^4.0.2", |
| 66 | + "minimatch": "^3.0.4", |
| 67 | + "puppeteer": "^1.19.0", |
| 68 | + "sade": "^1.6.1", |
| 69 | + "script-loader": "^0.7.2" |
| 70 | + }, |
| 71 | + "peerDependencies": { |
| 72 | + "webpack": ">=4" |
| 73 | + } |
67 | 74 | } |
0 commit comments