You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
angularjs-testing-library/package.json

96 lines
2.5 KiB

{
"name": "angularjs-testing-library",
"version": "0.0.0-semantic-release",
"description": "Simple and complete AngularJS testing utilities that encourage good testing practices.",
"main": "dist/index.js",
"module": "dist/angularjs-testing-library.esm.js",
"engines": {
"node": ">=8"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:main build:bundle:main build:bundle:pure",
"build:main": "kcd-scripts build --no-clean",
"build:bundle:main": "kcd-scripts build --bundle --no-clean",
"build:bundle:pure": "cross-env BUILD_FILENAME_SUFFIX=.pure BUILD_INPUT=src/pure.js kcd-scripts build --bundle --no-clean",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate -s"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"files": [
"dist",
"cleanup-after-each.js",
"dont-cleanup-after-each.js",
"pure.js"
],
"keywords": [
"testing",
"angularjs",
"ui",
"dom",
"jsdom",
"unit",
"integration",
"functional",
"end-to-end",
"e2e"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.0",
"@testing-library/dom": "^6.3.0"
},
"devDependencies": {
"@semantic-release/git": "^7.0.17",
"@testing-library/jest-dom": "^4.1.0",
"angular": "^1.7.8",
"angular-mocks": "^1.7.8",
"cross-env": "^6.0.0",
"kcd-scripts": "^1.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.30"
},
"peerDependencies": {
"angular": "*",
"angular-mocks": "*"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"import/no-unassigned-import": "off",
"import/named": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://git.sr.ht/~statianzo/angularjs-testing-library"
},
"homepage": "https://git.sr.ht/~statianzo/angularjs-testing-library",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
["@semantic-release/git", {
"assets": false
}]
],
"repositoryUrl": "git@git.sr.ht:~statianzo/angularjs-testing-library"
}
}