puppeteer/packages/ng-schematics/package.json

79 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "@puppeteer/ng-schematics",
"version": "0.5.3",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
"clean": "../../tools/clean.js",
2023-02-10 17:57:17 +00:00
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
2023-08-31 14:58:31 +00:00
"sandbox:test": "node tools/sandbox.js --test",
"sandbox": "node tools/sandbox.mjs",
"test": "wireit",
"test:smoke": "wireit"
},
"wireit": {
2023-02-10 17:57:17 +00:00
"build": {
2023-03-14 15:10:28 +00:00
"command": "tsc -b && node tools/copySchemaFiles.js",
2023-02-10 17:57:17 +00:00
"clean": "if-file-deleted",
"files": [
2023-03-14 15:10:28 +00:00
"tsconfig.json",
"tsconfig.spec.json",
"src/**",
"test/src/**"
],
"output": [
2023-03-14 15:10:28 +00:00
"lib/**",
"test/build/**",
"*.tsbuildinfo"
]
},
"test": {
"command": "mocha",
"dependencies": [
"build"
]
},
"test:smoke": {
"command": "node ./tools/smoke.mjs",
"dependencies": [
"build"
]
}
},
"keywords": [
"angular",
"puppeteer",
"schematics"
],
"repository": {
"type": "git",
"url": "https://github.com/puppeteer/puppeteer/tree/main/packages/ng-schematics"
},
"author": "The Chromium Authors",
"license": "Apache-2.0",
"engines": {
2023-11-10 10:29:05 +00:00
"node": ">=16.13.2"
},
"dependencies": {
"@angular-devkit/architect": "^0.1602.10",
"@angular-devkit/core": "^16.2.10",
"@angular-devkit/schematics": "^16.2.10"
},
"devDependencies": {
2023-11-10 10:29:05 +00:00
"@types/node": "^16.18.61",
"@schematics/angular": "^16.2.10",
"@angular/cli": "^16.2.10",
"rxjs": "7.8.1"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}