1bbecb3bae
**What kind of change does this PR introduce?** Adds Jest in `ng-schematics`. So you can scaffold test with Jest instead of Jasmine **Did you add tests for your changes?** Yes **If relevant, did you update the documentation?** No **Summary** Users can more easily integrate test with Puppeteer and their library of choose. **Does this PR introduce a breaking change?** No **Other information**
41 lines
992 B
JSON
41 lines
992 B
JSON
{
|
|
"name": "@puppeteer/ng-schematics",
|
|
"version": "0.0.0",
|
|
"description": "Puppeteer Angular schematics",
|
|
"scripts": {
|
|
"copy": "node copySchemaFiles.js",
|
|
"clean": "tsc -b --clean && rimraf lib",
|
|
"dev": "run-s clean copy && tsc -p tsconfig.json --watch",
|
|
"build": "run-s build:*",
|
|
"build:schematics": "npm run copy && tsc -p tsconfig.json",
|
|
"build:test": "tsc -p tsconfig.spec.json",
|
|
"test": "run-s clean build && mocha"
|
|
},
|
|
"keywords": [
|
|
"angular",
|
|
"puppeteer",
|
|
"schematics"
|
|
],
|
|
"author": "The Chromium Authors",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=14.1.0"
|
|
},
|
|
"dependencies": {
|
|
"@angular-devkit/core": "^14.2.6",
|
|
"@angular-devkit/schematics": "^14.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.15.0",
|
|
"@schematics/angular": "^14.2.8"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"!*.tsbuildinfo"
|
|
],
|
|
"ng-add": {
|
|
"save": "devDependencies"
|
|
},
|
|
"schematics": "./lib/schematics/collection.json"
|
|
}
|