-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.59 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
{
"name": "spinners-angular-workspace",
"version": "0.0.5",
"scripts": {
"ng": "ng",
"start": "ng build --watch spinners-angular",
"build:spinners": "ng build --configuration production spinners-angular && npm run copy:docs",
"build:elements": "npm run build:spinners && npm run build:elements:only",
"build:elements:only": "node build-elements.js",
"copy:elements": "cpy 'dist-elements' 'dist/elements'",
"copy:docs": "cpy '*.md' 'dist'",
"build": "npm run build:elements && npm run build:spinners && npm run copy:elements",
"publish": "npm run lint && npm run test:local && npm run build && npm publish dist && git push --tags",
"test:watch": "ng test spinners-angular --code-coverage",
"test:local": "ng test spinners-angular --code-coverage --watch=false",
"test": "npm run build:spinners && ng test spinners-angular --code-coverage --watch=false --browsers=ChromeHeadless && npm run coveralls",
"coveralls": "cat coverage/spinners-angular/lcov.info | coveralls",
"lint": "ng lint"
},
"directories": {
"lib": "./dist"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^12.1.3",
"@angular-devkit/build-angular": "^12.2.9",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular-eslint/builder": "12.5.0",
"@angular-eslint/eslint-plugin": "12.5.0",
"@angular-eslint/eslint-plugin-template": "12.5.0",
"@angular-eslint/schematics": "12.5.0",
"@angular-eslint/template-parser": "12.5.0",
"@angular/cli": "^12.2.9",
"@angular/common": "^12.2.9",
"@angular/compiler": "^12.2.9",
"@angular/compiler-cli": "^12.2.9",
"@angular/core": "^12.2.9",
"@angular/elements": "^12.2.9",
"@angular/language-service": "^12.2.9",
"@angular/platform-browser": "^12.2.9",
"@angular/platform-browser-dynamic": "^12.2.9",
"@types/jasmine": "^3.5.11",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"coveralls": "^3.1.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.26.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~3.9.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"ng-packagr": "^12.2.2",
"protractor": "^7.0.0",
"ts-node": "~10.2.1",
"tslib": "^2.3.1",
"typescript": "~4.3.5",
"zone.js": "~0.11.4"
}
}