forked from ng-packagr/ng-packagr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.94 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.94 KB
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
138
139
140
141
142
143
144
145
{
"name": "ng-packagr",
"version": "5.3.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 <david@spektrakel.de>",
"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": {
"@ngtools/json-schema": "^1.1.0",
"autoprefixer": "^9.6.0",
"browserslist": "^4.0.0",
"chalk": "^2.3.1",
"chokidar": "^3.0.0",
"clean-css": "^4.1.11",
"commander": "^2.12.0",
"fs-extra": "^8.0.0",
"glob": "^7.1.2",
"injection-js": "^2.2.1",
"less": "^3.8.0",
"less-plugin-npm-import": "^2.1.0",
"node-sass-tilde-importer": "^1.0.0",
"postcss": "^7.0.0",
"postcss-url": "^8.0.0",
"read-pkg-up": "^5.0.0",
"rimraf": "^2.6.1",
"rollup": "^1.12.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rxjs": "^6.0.0",
"sass": "^1.17.3",
"stylus": "^0.54.5",
"terser": "^4.0.0",
"update-notifier": "^3.0.0"
},
"peerDependencies": {
"@angular/compiler": "^6.0.0 || ^7.0.0 || ^8.0.0-beta.0 || ^8.1.0-beta.0",
"@angular/compiler-cli": "^6.0.0 || ^7.0.0 || ^8.0.0-beta.0 || ^8.1.0-beta.0",
"tslib": "^1.9.0",
"typescript": ">=2.7 < 3.5"
},
"devDependencies": {
"@angular/cdk": "~8.0.0-rc.0",
"@angular/common": "~8.0.0-rc.0",
"@angular/compiler": "~8.0.0-rc.0",
"@angular/compiler-cli": "~8.0.0-rc.0",
"@angular/core": "~8.0.0-rc.0",
"@angular/material": "^8.0.0",
"@angular/platform-browser": "~8.0.0-rc.0",
"@angular/router": "~8.0.0-rc.0",
"@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/clean-css": "^4.0.0",
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.0.0",
"@types/jasmine": "^3.0.0",
"@types/mocha": "^5.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.0.19",
"@types/react-dom": "^16.0.2",
"@types/read-pkg-up": "^3.0.1",
"@types/sinon": "^7.0.0",
"@types/stylus": "^0.48.30",
"@types/uglify-js": "^3.0.2",
"@types/update-notifier": "^2.0.0",
"chai": "^4.0.1",
"copyfiles": "^2.0.0",
"cpx": "^1.5.0",
"cross-env": "^5.0.5",
"gh-pages": "^2.0.0",
"husky": "^2.0.0",
"jasmine": "^3.0.0",
"json-schema-to-typescript": "^6.0.0",
"mocha": "^6.0.0",
"prettier": "^1.10.2",
"pretty-quick": "^1.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rxjs-compat": "^6.0.0",
"sinon": "^7.0.0",
"source-map": "^0.7.0",
"standard-version": "^6.0.0",
"ts-node": "^8.0.0",
"tsickle": "^0.35.0",
"tslib": "^1.9.0",
"typescript": "~3.4.5",
"zone.js": "^0.9.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 --message 'release: cut v%s' --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"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/ng-packagr",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e",
"pre-commit": "pretty-quick --staged"
}
}
}