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

94 lines
2.5 KiB

{
"name": "angularjs-testing-library",
chore(release): 1.0.0 [skip ci] # 1.0.0 (2019-11-04) ### Bug Fixes * **test:** debug tests pass ([caee065](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/caee06593793f42b14ec746ece90118d515516fa)) * **test:** multi-base test passes. rm unused tests ([9257e06](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/9257e0642f6191987435f6b3b057ac69514d0afc)) ### Features * flush intervals by 50 ms default ([d7c50a8](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/d7c50a87d11b922ea44ade4dfc4ddc650bd42087)) * wait flushes angular tasks ([1706665](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/170666561972531f131342858cb93674845c663e)) * **events:** fireEvent triggers a digest ([ace9f5b](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/ace9f5bdbf166424d127e8aa09c09c62bacd77bc)) * Assign `scope` option to $scope ([b69df8d](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/b69df8d8e7636ff307c2c4688c0c291e44c03636)) * call $destroy on cleanup ([78021a6](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/78021a6ab00e5d5bad113ab3001c2889d9dd40f3)) * first passing render tests ([b82fb93](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/b82fb936958a2b1c6bef7d84bc18da2269d93877)) * initial release ([35ff36d](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/35ff36dcd7503759971aecaec879795a961eb08e)) * skip auto-cleanup via ATL_SKIP_AUTO_CLEANUP ([79c6c4f](https://git.sr.ht/~statianzo/angularjs-testing-library/commit/79c6c4f2a53b4f49b1143e1f7295520ec1a229c1))
5 years ago
"version": "1.0.0",
"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"
],
"repositoryUrl": "git@git.sr.ht:~statianzo/angularjs-testing-library"
}
}