This repository has been archived by the owner on Feb 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "alosaur-schematics",
"version": "0.3.0",
"description": "Alosaur schematics for generating files",
"license": "MIT",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.21.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/emjimadhu/alosaur-schematics.git"
},
"homepage": "https://github.com/emjimadhu/alosaur-schematics#readme",
"author": {
"email": "[email protected]",
"name": "Em Ji Madhu"
},
"keywords": [
"schematics",
"deno",
"alosaur"
],
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"postbuild": "yarn copy:collection && yarn copy:libs",
"checkYarn": "echo \"$npm_execpath\" | grep -q \"yarn\\.js$\" || (echo '⚠️ Use YARN not NPM! ⚠️ ' && echo && exit 1)",
"copy:collection": "cpx src/collection.json dist && cpx 'src/libs/**/schema.json' dist/libs",
"copy:libs": "cpx 'src/libs/**/files/**/*' dist/libs && cpx 'src/libs/**/files/**/.!(gitignore)' dist/libs",
"git:commit": "git-cz",
"lint": "eslint -f formattify 'src/**/*.ts'",
"lint:fix": "eslint -f formattify 'src/**/*.ts' --fix",
"preinstall": "$npm_execpath --silent run checkYarn",
"test": "NODE_ENV=test jest -w 1 --no-cache --config jest.json",
"test:watch": "NODE_ENV=test yarn -s test -- --watchAll"
},
"schematics": "./dist/collection.json",
"dependencies": {
"@angular-devkit/core": "9.1.1",
"@angular-devkit/schematics": "9.1.1"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"commitizen": "4.0.4",
"cpx": "1.5.0",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-formatter-formattify": "4.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jest-formatting": "1.2.0",
"eslint-plugin-unicorn": "18.0.1",
"husky": "4.2.5",
"jest": "25.3.0",
"ts-jest": "25.3.1",
"typescript": "3.8.3"
}
}