Files
ionic-framework/packages/core/package.json
2018-01-09 15:13:18 -06:00

74 lines
2.3 KiB
JSON

{
"name": "@ionic/core",
"version": "0.0.2-42",
"description": "Base components for Ionic",
"main": "dist/ionic.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"devDependencies": {
"@stencil/core": "0.1.2",
"@stencil/dev-server": "0.0.18",
"@stencil/utils": "latest",
"@types/jest": "^21.1.6",
"chai": "^4.1.2",
"chromedriver": "^2.33.2",
"glob": "^7.1.2",
"ionicons": "4.0.0-11",
"jest": "^21.2.1",
"mocha": "^4.0.1",
"np": "^2.17.0",
"sass-lint": "^1.12.1",
"selenium-webdriver": "^3.6.0",
"tslint": "^5.8.0",
"tslint-ionic-rules": "0.0.11",
"yargs": "^10.0.3"
},
"scripts": {
"build": "stencil build --docs",
"tsc": "./node_modules/.bin/tsc -p .",
"dev": "sd concurrent \"stencil build --dev --watch --docs\" \"stencil-dev-server\"",
"e2e": "node ./scripts/e2e",
"e2e-debug": "node --inspect --debug-brk ./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",
"theme-app-build": "stencil build --dev --config scripts/theme-builder/stencil.config.js",
"theme-server": "node scripts/theme-builder/server.js",
"theme-builder": "npm run theme-app-build && sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" \"npm run theme-server\" ",
"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": {
"^.+\\.(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"
]
}
}