Files
taimed/node_modules/js-reporters/package.json
2025-07-24 17:21:45 +08:00

62 lines
1.7 KiB
JSON

{
"name": "js-reporters",
"version": "1.2.1",
"description": "common reporter interface for javascript testing frameworks",
"main": "dist/js-reporters.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/js-reporters/js-reporters.git"
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "standard && npm run test-unit && npm run test-integration",
"test-unit": "mocha --recursive test/unit/ && npm run test-browser",
"test-browser": "karma start",
"test-integration": "mocha test/integration/adapters.js",
"test-versions": "mocha test/versions/versions.js"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"commitplease": "^2.2.3",
"events": "^1.1.0",
"jasmine": "2.5.1",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-webpack": "^1.8.0",
"mocha": "^2.4.5",
"qunitjs": "^2.0.0-rc1",
"rollup": "^0.34.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-node-resolve": "^1.7.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"standard": "^6.0.8",
"webpack": "^1.0.0"
},
"commitplease": {
"components": [
"Build",
"Changelog",
"Readme",
"Release",
"Reporter",
"Test",
"Docs"
]
}
}