forked from ng-packagr/ng-packagr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 4.65 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "ng-packagr",
"version": "10.0.0-rc.0",
"description": "Compile and package a TypeScript library to Angular Package Format",
"keywords": [
"angular",
"angular2",
"angular4",
"angular-library",
"angular-components",
"component-library",
"typescript",
"css",
"scss",
"html"
],
"author": "David Herges <[email protected]>",
"license": "MIT",
"repository": "https://github.com/ng-packagr/ng-packagr.git",
"homepage": "https://github.com/ng-packagr/ng-packagr",
"bugs": {
"url": "https://github.com/ng-packagr/ng-packagr/issues"
},
"bin": {
"ng-packagr": "./cli/main.js"
},
"main": "./public_api.js",
"typings": "./public_api.d.ts",
"dependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"ajv": "^6.10.2",
"autoprefixer": "^9.6.5",
"browserslist": "^4.7.0",
"chalk": "^4.0.0",
"chokidar": "^3.2.1",
"commander": "^5.0.0",
"cssnano-preset-default": "^4.0.7",
"fs-extra": "^9.0.0",
"glob": "^7.1.2",
"injection-js": "^2.2.1",
"less": "^3.10.3",
"node-sass-tilde-importer": "^1.0.0",
"postcss": "^7.0.29",
"postcss-url": "^8.0.0",
"read-pkg-up": "^5.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.8.0",
"rollup-plugin-sourcemaps": "^0.6.0",
"rxjs": "^6.5.0",
"sass": "^1.23.0",
"stylus": "^0.54.7",
"terser": "^4.3.8",
"update-notifier": "^4.0.0"
},
"peerDependencies": {
"@angular/compiler": "^10.0.0-next.8",
"@angular/compiler-cli": "^10.0.0-next.8",
"tslib": "^2.0.0",
"typescript": ">=3.9 < 3.10"
},
"devDependencies": {
"@angular/cdk": "^9.0.0",
"@angular/common": "~10.0.0-next.8",
"@angular/compiler": "~10.0.0-next.8",
"@angular/compiler-cli": "~10.0.0-next.8",
"@angular/core": "~10.0.0-next.8",
"@angular/material": "^9.0.0",
"@angular/platform-browser": "~10.0.0-next.8",
"@angular/router": "~10.0.0-next.8",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"@types/acorn": "^4.0.3",
"@types/chai": "^4.0.0",
"@types/chokidar": "^1.7.5",
"@types/fs-extra": "^9.0.0",
"@types/glob": "^7.0.0",
"@types/jasmine": "^3.0.0",
"@types/mocha": "^7.0.0",
"@types/node": "^14.0.0",
"@types/react": "^16.0.19",
"@types/react-dom": "^16.0.2",
"@types/read-pkg-up": "^3.0.1",
"@types/sinon": "^9.0.0",
"@types/stylus": "^0.48.30",
"@types/uglify-js": "^3.0.2",
"@types/update-notifier": "^4.0.0",
"chai": "^4.0.1",
"copyfiles": "^2.0.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.0",
"husky": "^4.0.0",
"jasmine": "^3.0.0",
"json-schema-to-typescript": "^9.0.0",
"mocha": "^7.0.0",
"prettier": "~2.0.0",
"pretty-quick": "~2.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rxjs-compat": "^6.0.0",
"sinon": "^9.0.0",
"source-map": "^0.7.0",
"standard-version": "^8.0.0",
"ts-node": "^8.0.0",
"tsickle": "^0.38.0",
"tslib": "^2.0.0",
"typescript": "~3.9.2",
"zone.js": "^0.10.0"
},
"private": true,
"scripts": {
"prebuild": "rimraf dist && yarn schema",
"build": "tsc -p src/tsconfig.packagr.json",
"postbuild": "node ./scripts/postbuild.js",
"schema": "json2ts --input src/ng-package.schema.json --output src/ng-package.schema.ts",
"prerelease": "yarn build",
"release": "standard-version --releaseCommitMessageFormat 'release: cut v{{currentTag}}' --no-verify",
"postrelease": "node ./scripts/prepublish.js",
"publish:ci": "yarn prerelease && yarn postrelease",
"integration:samples": "integration/samples.sh",
"integration:samples:dev": "ts-node --project src/tsconfig.packagr.json ./integration/samples.dev.ts",
"integration:specs": "cross-env TS_NODE_PROJECT=integration/tsconfig.specs.json mocha --require ts-node/register \"integration/samples/*/specs/**/*.ts\"",
"integration:consumers": "integration/consumers.sh",
"integration:consumers:ngc": "ngc -p integration/consumers/tsc/tsconfig.json",
"integration:watch:specs": "cross-env TS_NODE_PROJECT=integration/tsconfig.specs.json mocha --timeout 25000 --require ts-node/register \"integration/watch/*.spec.ts\"",
"test:specs": "cross-env TS_NODE_PROJECT=src/tsconfig.specs.json mocha --require ts-node/register \"src/**/*.spec.ts\"",
"test": "yarn build && yarn test:specs && yarn integration:samples && yarn integration:specs && yarn integration:watch:specs && yarn integration:consumers",
"gh-pages": "gh-pages -d docs/ghpages"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "pretty-quick --staged"
}
}
}