puppeteer/packages/ng-schematics/package.json

71 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "@puppeteer/ng-schematics",
"version": "0.4.0",
"description": "Puppeteer Angular schematics",
"scripts": {
"build": "wireit",
2023-03-06 10:33:38 +00:00
"clean": "tsc -b --clean && rm -rf lib && rm -rf test/build",
2023-02-10 17:57:17 +00:00
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"test": "wireit",
"sandbox": "node tools/sandbox.js",
"sandbox:test": "node tools/sandbox.js --test"
},
"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/**"
]
},
"test": {
"command": "mocha",
"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": {
"node": ">=16.3.0"
},
"dependencies": {
"@angular-devkit/architect": "^0.1601.4",
"@angular-devkit/core": "^16.1.4",
"@angular-devkit/schematics": "^16.1.5"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@schematics/angular": "^16.1.4",
"@angular/cli": "^16.1.4",
"rxjs": "7.8.1"
},
"files": [
"lib",
"!*.tsbuildinfo"
],
"ng-add": {
"save": "devDependencies"
},
"schematics": "./lib/schematics/collection.json",
"builders": "./lib/builders/builders.json"
}