forked from plurals/pluralize
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.83 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
{
"name": "ng-pluralize",
"version": "1.3.0",
"description": "Angular project to pluralize and singularize any word",
"readme": "README.md",
"homepage": "https://ng-pluralize.jrquick.com",
"scripts": {
"build": "ng-packagr -p ng-package.json",
"build:link": "npm run build && cd dist/ && npm link",
"demo": "cd demo && ng serve",
"demo:build": "cd demo && ng build --configuration production && cd ..",
"demo:test": "npm run build && cd demo && cp -fr ../dist/* node_modules/ng-pluralize/ && cd .. && npm run demo",
"docs": "npm run docs:build",
"docs:build": "compodoc -p tsconfig.json -n ng-pluralize -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "tslint --project tsconfig.json src/**/*.ts",
"publish": "npm publish dist",
"shipit": "npm run test && npm run build && npm run docs:build && npm run publish",
"test": "ng test --browsers PhantomJS --progress --watch false"
},
"repository": {
"type": "git",
"url": "https://github.com/jrquick17/ng-pluralize"
},
"keywords": [
"angular",
"plural",
"plurals",
"pluralize",
"singular",
"singularize",
"inflection"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jrquick17/ng-pluralize/issues"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1602.0",
"@angular-devkit/build-angular": "^16.2.0",
"@angular-devkit/core": "^16.2.0",
"@angular-devkit/schematics": "^16.2.0",
"@angular/animations": "^16.2.2",
"@angular/cdk": "^16.2.1",
"@angular/cli": "^16.2.0",
"@angular/common": "^16.2.2",
"@angular/compiler": "^16.2.2",
"@angular/compiler-cli": "^16.2.2",
"@angular/core": "^16.2.2",
"@angular/forms": "^16.2.2",
"@angular/language-service": "^16.2.2",
"@angular/platform-browser": "^16.2.2",
"@angular/platform-browser-dynamic": "^16.2.2",
"@angular/router": "^16.2.2",
"@angular/service-worker": "^16.2.2",
"@compodoc/compodoc": "^1.1.14",
"@types/core-js": "^2.5.5",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.20.19",
"codelyzer": "^6.0.0",
"hammerjs": "^2.0.8",
"intl": "^1.2.5",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-phantomjs-launcher": "^1.0.4",
"ng-packagr": "^16.2.1",
"protractor": "~7.0.0",
"rollup": "^2.56.1",
"rxjs": "^6.6.7",
"ts-node": "^8.10.2",
"tslib": "^2.1.0",
"tslint": "~6.1.0",
"typescript": "^4.8.2",
"webpack": "^5.3.0",
"zone.js": "~0.13.1"
},
"engines": {
"node": ">=6.0.0"
},
"peerDependencies": {}
}