-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "schematics-utilities",
"version": "2.0.3",
"author": "Nitay Neeman",
"description": "🛠️ Useful exported utilities for working with Schematics",
"homepage": "https://github.com/nitayneeman/schematics-utilities",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nitayneeman/schematics-utilities.git"
},
"keywords": [
"schematic",
"schematics",
"utility",
"utilities",
"util",
"utils",
"angular",
"devkit",
"material"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc --options ./.typedoc.json",
"clean": "rm -rf ./dist",
"clean:docs": "rm -rf ./docs",
"format": "prettier --write '**/*.ts' '**/*.json'",
"format:staged": "pretty-quick --staged",
"precommit": "npm run format:staged",
"prepublishOnly": "npm run clean && npm run build",
"publish:docs": "./scripts/publish-docs.sh",
"test:sanity": "./scripts/test-sanity.sh"
},
"dependencies": {
"@angular-devkit/core": "^8.3.8",
"@angular-devkit/schematics": "^8.3.8",
"@schematics/angular": "^8.3.8",
"@schematics/update": "^0.803.8",
"rxjs": "^6.4.0",
"typescript": "^3.6.3"
},
"optionalDependencies": {
"parse5": "^5.1.0"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^0.803.21",
"@types/jasmine": "^3.4.2",
"@types/node": "^8.0.31",
"husky": "^3.0.8",
"jasmine": "^3.5.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"typedoc": "^0.15.0"
}
}