-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.22 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.22 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
{
"private": true,
"name": "@pipecat/angular-timeout",
"version": "0.1.0",
"description": "Angular - timeout counter component",
"main": "src/angular-timeout.ts",
"engines": {
"node": ">=8.10.0",
"npm": ">=5.7.1"
},
"scripts": {
"clean": "node tools/setup-clean.js",
"bundle": "tsc && webpack --config webpack-umd.config.ts --progress --colors",
"files": "node tools/setup-files.js",
"package": "node tools/setup-package.js",
"prebuild": "npm run clean",
"build": "npm run bundle && npm run files && npm run package",
"postbuild": "git add -A lib && git commit -m \"New build\" -- lib",
"prepublishOnly": "npm version patch && npm run package",
"publish": "cd ./lib && npm test && npm publish --access public",
"postpublish": "git add -A lib && git commit --amend --no-edit && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepipecat/angular-timeout.git"
},
"keywords": [
"angular",
"timeout",
"countdown",
"timer"
],
"author": {
"name": "Pedro Xudre",
"email": "xudre@me.com"
},
"contributors": [{
"name": "Pedro Xudre",
"email": "xudre@me.com"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/thepipecat/angular-timeout/issues"
},
"homepage": "https://github.com/thepipecat/angular-timeout#readme",
"dependencies": {
"@angular/common": "^5.2.7",
"@angular/core": "^5.2.7"
},
"devDependencies": {
"@angular/compiler": "^5.2.7",
"@angular/compiler-cli": "^5.2.7",
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.6",
"@types/webpack": "^4.0.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.5.0",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.10",
"del": "^3.0.0",
"json-loader": "^0.5.7",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rxjs": "^5.5.6",
"sass-loader": "^6.0.7",
"to-string-loader": "^1.1.5",
"ts-loader": "^4.0.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": ">=2.4.2 <2.7",
"webpack": "^3.6.0",
"webpack-angular-externals": "^1.0.2",
"webpack-rxjs-externals": "^1.1.0",
"zone.js": "^0.8.20"
}
}