forked from johannesjo/angular2-promise-buttons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.21 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
94
{
"name": "angular2-promise-buttons",
"version": "4.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/johannesjo/angular2-promise-buttons.git"
},
"scripts": {
"total-patch-publish": "run-s test demo.deploy version && npm version patch && npm publish",
"total-patch-publish-force": "run-s test demo.deploy version && npm version patch --force && npm publish",
"demo.serve": "ng serve",
"demo.gh-pages": "gh-pages -d demo/dist",
"demo.build": "ng build --prod --aot",
"demo.copy-readme": "node scripts/copy-readme-to-demo.js",
"demo.deploy": "run-s demo.build demo.copy-readme demo.gh-pages",
"release.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"release.github-release": "conventional-github-releaser -p angular",
"release": "run-s release.changelog release.github-release",
"build": "run-s build.clean build.compile",
"build.clean": "rm -Rf ./dist",
"build.compile": "ngc -p ./tsconfig.build-lib.json",
"dev": "ng serve",
"start": "run-s dev",
"test": "ng test",
"test-coverage": "ng test --code-coverage",
"link-mod": "cd demo/src/app && -s ../../../src component-symlink && cd ....",
"coveralls": "YOURPACKAGE_COVERAGE=1 cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"version": "run-s release.changelog build && git add CHANGELOG.md && git add -A dist",
"postversion": "git push && git push --tags",
"lint": "ng lint",
"e2e": "ng e2e",
"ng": "ng"
},
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"LICENCE",
"*.md"
],
"peerDependencies": {
"@angular/core": "^8.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.800.2",
"@angular/cli": "^8.0.2",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/forms": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/router": "^8.0.0",
"@types/bluebird": "^3.5.8",
"@types/core-js": "^0.9.41",
"@types/jasmine": "2.5.38",
"@types/jquery": "^3.3.6",
"@types/node": "~6.0.60",
"angular2-template-loader": "^0.6.2",
"bluebird": "^3.5.0",
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"codelyzer": "^5.0.1",
"conventional-changelog-cli": "^1.3.1",
"conventional-github-releaser": "^1.1.3",
"coveralls": "^2.13.1",
"gh-pages": "^0.12.0",
"intl": "^1.2.5",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"jquery": "^3.2.1",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"marked": "^0.3.6",
"npm-run-all": "^4.0.2",
"protractor": "~5.1.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.1.0",
"ts-node": "~8.2.0",
"tslint": "^5.16.0",
"typescript": "~3.4.5",
"wallaby-webpack": "0.0.38",
"web-animations-js": "^2.2.5",
"zone.js": "^0.9.1"
}
}