-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.7 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
{
"name": "ngx-numeral",
"version": "1.0.0",
"main": "./dist/index",
"typings": "./dist/index.d.ts",
"description": "An Angular pipe module for interfacing the Awesome Numeraljs library.",
"license": "MIT",
"homepage": "https://github.com/jogboms/ngx-numeral#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jogboms/ngx-numeral.git"
},
"keywords": [
"Ng",
"Ngx",
"Angular",
"Angular2",
"Numeraljs",
"Numeral",
"Pipes",
"Numbers"
],
"scripts": {
"build": "ngc -p .",
"precommit": "npm run test --no-verify",
"preversion": "npm run build",
"version": "git add -A .",
"prepush": "npm run lint && npm version prerelease -m 'feat: Bumped version to %s' --no-verify",
"test": "echo \"Error: no test specified\" && exit 0",
"prepublish": "npm run build",
"lint": "tslint --project ./tsconfig.json --type-check --fix",
"demo:watch": "watch 'npm run demo' ./src",
"demo": "npm run build && cd ./demo && npm i ../"
},
"author": {
"name": "jogboms"
},
"bugs": {
"url": "https://github.com/jogboms/ngx-numeral/issues"
},
"dependencies": {
"numeral": "~2.0.6"
},
"devDependencies": {
"@angular/cli": "^13.1.4",
"@angular/common": "^13.1.3",
"@angular/compiler": "^13.1.3",
"@angular/compiler-cli": "^13.1.3",
"@angular/core": "^13.1.3",
"husky": "^7.0.4",
"tslint": "^5.20.1",
"typescript": "4.5.5",
"watch": "^1.0.2"
},
"contributors": ["Zeshan Javed <zeshanjaved786@gmail.com>"]
}