mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
99 lines
3.1 KiB
JSON
99 lines
3.1 KiB
JSON
{
|
|
"name": "@ionic/core",
|
|
"version": "4.0.0-alpha.2",
|
|
"description": "Base components for Ionic",
|
|
"keywords": [
|
|
"ionic",
|
|
"framework",
|
|
"stencil",
|
|
"mobile",
|
|
"app",
|
|
"webapp",
|
|
"capacitor",
|
|
"cordova",
|
|
"progressive web app",
|
|
"pwa"
|
|
],
|
|
"main": "dist/ionic.js",
|
|
"types": "dist/types/index.d.ts",
|
|
"collection": "dist/collection/collection-manifest.json",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"dependencies": {
|
|
"ionicons": "4.0.0-19"
|
|
},
|
|
"devDependencies": {
|
|
"@stencil/core": "0.7.25",
|
|
"@stencil/dev-server": "latest",
|
|
"@stencil/sass": "0.0.3",
|
|
"@stencil/utils": "latest",
|
|
"@types/jest": "^21.1.6",
|
|
"chai": "^4.1.2",
|
|
"chalk": "^2.3.2",
|
|
"chromedriver": "^2.37.0",
|
|
"execa": "^0.9.0",
|
|
"fs-extra": "^5.0.0",
|
|
"glob": "^7.1.2",
|
|
"inquirer": "^5.2.0",
|
|
"jest": "^21.2.1",
|
|
"listr": "^0.13.0",
|
|
"mocha": "^4.0.1",
|
|
"np": "^2.17.0",
|
|
"sass-lint": "^1.12.1",
|
|
"selenium-webdriver": "^3.6.0",
|
|
"semver": "^5.5.0",
|
|
"tslint": "^5.8.0",
|
|
"tslint-ionic-rules": "0.0.13",
|
|
"yargs": "^10.0.3"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && stencil build --docs",
|
|
"build.docs.json": "stencil build --docs-json dist/docs.json",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
"clean": "node scripts/clean.js",
|
|
"dev": "sd concurrent \"stencil build --dev --watch --docs\" \"stencil-dev-server\"",
|
|
"devapp": "sd concurrent \"stencil build --dev --watch --docs\" \"stencil-dev-server --broadcast\"",
|
|
"e2e": "node ./scripts/e2e",
|
|
"e2e-debug": "node --inspect --debug-brk ./scripts/e2e",
|
|
"lint": "npm run lint.ts && npm run lint.sass",
|
|
"lint.sass": "sass-lint -v -q",
|
|
"lint.ts": "tslint --project .",
|
|
"lint.ts.fix": "tslint --project . --fix",
|
|
"prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next",
|
|
"set.version": "node scripts/set-version.js",
|
|
"snapshot": "node ./scripts/e2e --snapshot",
|
|
"test": "jest --no-cache",
|
|
"test.watch": "jest --watch --no-cache",
|
|
"theme-app-build": "stencil build --dev --config scripts/theme-builder/stencil.config.js",
|
|
"theme-builder": "sd concurrent \"npm run theme-app-build\" \"stencil build --dev --watch\" \"stencil-dev-server\" \"npm run theme-server\" ",
|
|
"theme-builder:dev": "sd concurrent \"npm run theme-app-build -- --watch\" \"stencil build --dev --watch\" \"stencil-dev-server\" \"npm run theme-server\" ",
|
|
"theme-server": "node scripts/theme-builder/server.js",
|
|
"tsc": "./node_modules/.bin/tsc -p .",
|
|
"validate": "npm i && npm run lint && npm run test && 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": {
|
|
"^.+\\.(js|ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
|
|
},
|
|
"testRegex": "src/.*\\.spec\\.(ts|tsx|js)$",
|
|
"moduleFileExtensions": [
|
|
"ts",
|
|
"tsx",
|
|
"js",
|
|
"jsx",
|
|
"d.ts"
|
|
]
|
|
}
|
|
}
|