This repository has been archived by the owner on Nov 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.59 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
{
"name": "ngx-libs-demo",
"version": "9.0.0",
"license": "MIT",
"description": "使用angular写的几个简单组件,此工程包含组件源码和使用示例",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "https://github.com/wjx774326739/ngx-libs-demo/issues"
},
"scripts": {
"ng": "ng",
"conventional-changelog": "conventional-changelog",
"start": "ng serve ",
"build": "ng build --base-href ./ ",
"build:deploy": "npm run build:prod -- --base-href /ngx-libs-demo/ --outputPath=docs && cp docs/index.html docs/404.html",
"build:prod": "npm run build -- --prod ",
"build:prod:aot": "npm run build:prod -- --aot ",
"build:prod:analyze:source-map-explorer": "npm run build:prod -- --source-map",
"analyze:source-map-explorer": "node_modules/.bin/source-map-explorer ",
"build:prod:analyze:webpack-bundle-analyzer": "npm run build:prod -- --stats-json && npm run analyze:webpack-bundle-analyzer",
"analyze:webpack-bundle-analyzer": "node_modules/.bin/webpack-bundle-analyzer dist/stats.json ",
"gene:lib": "ng generate library --prefix=ngx",
"build:lib": "ng build --prod ",
"npm_pack:ngx-libs": "cp projects/ngx-libs/changelog.md node_modules/ngx-libs/ && cd node_modules/ngx-libs && npm pack && cd ../../ && mv node_modules/ngx-libs/*.tgz libs/ngx-libs/",
"package:ngx-libs": "npm run build:lib ngx-libs && npm run npm_pack:ngx-libs",
"test": "ng test -sr",
"test:coverage": "rimraf coverage && npm run test -- -cc",
"lint": "ng lint --type-check",
"lint:fix": "ng lint --fix",
"lint:styles": "stylelint ./src/**/*.scss",
"lint:ci": "npm run lint && npm run lint:styles",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "ng e2e",
"docs": "compodoc -p src/tsconfig.app.json -d docs",
"docs:serve": "compodoc -p src/tsconfig.app.json -d docs -s",
"release:changelog": "npm run conventional-changelog -- -p angular -i src/CHANGELOG.MD -s"
},
"dependencies": {
"@angular/animations": "^9.1.4",
"@angular/common": "^9.1.4",
"@angular/compiler": "^9.1.4",
"@angular/core": "^9.1.4",
"@angular/forms": "^9.1.4",
"@angular/platform-browser": "^9.1.4",
"@angular/platform-browser-dynamic": "^9.1.4",
"@angular/router": "^9.1.4",
"classlist.js": "^1.1.20150312",
"core-js": "^2.6.0",
"font-awesome": "^4.7.0",
"ionicons": "^4.4.6",
"ngx-libs": "file:libs/ngx-libs/ngx-libs-9.0.0.tgz",
"normalize.css": "^8.0.1",
"rxjs": "^6.2.1",
"socicon": "^3.0.5",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.4",
"@angular-devkit/build-ng-packagr": "~0.901.4",
"@angular/cli": "^9.1.4",
"@angular/compiler-cli": "^9.1.4",
"@angular/language-service": "^9.1.4",
"@compodoc/compodoc": "1.1.7",
"@types/jasmine": "3.3.0",
"@types/jasminewd2": "2.0.6",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"conventional-changelog-cli": "2.0.11",
"husky": "1.2.0",
"jasmine-core": "3.3.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "3.1.3",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.0",
"ng-packagr": "^9.0.0",
"npm-run-all": "4.1.5",
"protractor": "5.4.1",
"rimraf": "2.6.2",
"source-map-explorer": "^2.0.1",
"stylelint": "9.9.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "~3.8.3",
"webpack-bundle-analyzer": "^3.5.0"
}
}