mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* feat(e2e-tests) simplify e2e test structure * test(badge) add basic e2e test * test(button) update e2e test to new structure * test(card) add basic e2e test * test(checkbox) add basic e2e test * chore(e2e-test) update path to e2e module in run-e2e * fix(button) update toolbar e2e deps * fix(e2e-test) update path in snapshot script * feat(e2e-test) move e2e scripts into scripts/e2e * test(chip) add basic e2e test * test(content) add basic e2e test * test(datetime) add basic e2e test * style(e2e-test) use consistent title/header in e2e test pages * test(fab) add basic e2e test * fix(e2e-test) don't run e2e script when required * test(grid) add basic e2e test * test(icon) add basic e2e test * test(input) add basic e2e test * style(e2e-test) use consistent e2e test header titles * test(list) add basic e2e test * test(menu) add basic e2e test * test(modal) add basic e2e test * feat(e2e-test) add navigate export to e2e module * feat(e2e-test) add present method to Page class * test(popover) add basic e2e test * test(menu) add present left menu e2e test * test(radio) add basic e2e test * test(range) add basic e2e test * test(searchbar) add basic e2e test * test(segment) add basic e2e test * test(select) add basic e2e test * test(modal) add shows modal e2e test * test(slides) add basic e2e test * test(spinner) add basic/color e2e tests * test(tabs) add basic e2e test * test(toast) add basic e2e test * test(toggle) add basic e2e test * test(toolbar) add basic e2e test * docs(e2e-test) update e2e readme to reflect simplest test * test(card) update basic e2e test * chore(e2e-test) remove run-e2e script * test(components): move remaining component tests to index files * chore(package): add mocha to devDependencies * test(infinite-scroll) add basic e2e test * test(item-sliding) add basic e2e test * test(item) add basic/buttons e2e tests * test(nav) add basic e2e test * test(reorder) add basic e2e test * test(split-pane) add basic e2e test * chore() update declarations file * refactor(toast): reduce border-radius * chore(components): update components.d.ts
66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "@ionic/core",
|
|
"version": "0.0.2-22",
|
|
"description": "Base components for Ionic",
|
|
"main": "dist/collection/index.js",
|
|
"types": "dist/collection/index.d.ts",
|
|
"browser": "dist/ionic.js",
|
|
"collection": "dist/collection/collection-manifest.json",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"devDependencies": {
|
|
"@stencil/core": "0.0.8-3",
|
|
"@stencil/dev-server": "0.0.18-0",
|
|
"@stencil/utils": "latest",
|
|
"@types/jest": "^21.1.0",
|
|
"ionicons": "^4.0.0-6",
|
|
"jest": "^21.1.0",
|
|
"mocha": "^4.0.1",
|
|
"np": "^2.16.1",
|
|
"sass-lint": "^1.11.1",
|
|
"selenium-webdriver": "^3.6.0",
|
|
"tslint": "^5.7.0",
|
|
"tslint-ionic-rules": "0.0.11"
|
|
},
|
|
"scripts": {
|
|
"build": "stencil build",
|
|
"tsc": "./node_modules/.bin/tsc -p .",
|
|
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\"",
|
|
"e2e": "node ./scripts/e2e",
|
|
"snapshot": "node ./scripts/e2e --snapshot",
|
|
"test": "jest --no-cache",
|
|
"test.watch": "jest --watch --no-cache",
|
|
"clean": "rm -rf dist",
|
|
"lint": "npm run tslint & npm run sass-lint",
|
|
"sass-lint": "sass-lint -v -q",
|
|
"tslint": "tslint --project .",
|
|
"tslint-fix": "tslint --project . --fix",
|
|
"validate": "npm run clean && npm run lint && npm run test && npm run build",
|
|
"deploy": "np --any-branch",
|
|
"version": "npm run build"
|
|
},
|
|
"author": "Ionic Team",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ionic-team/ionic.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ionic-team/ionic/issues"
|
|
},
|
|
"homepage": "https://github.com/ionic-team/ionic#readme",
|
|
"jest": {
|
|
"transform": {
|
|
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
|
|
},
|
|
"testRegex": "src/.*\\.spec\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx"
|
|
]
|
|
}
|
|
}
|