-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
127 lines (127 loc) · 4.59 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "angular-odata-es5",
"version": "0.12.0",
"description": "OData service for Angular (es5 version)",
"main": "./bundles/angular-odata-es5.umd.js",
"module": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"tslint": "tslint --project tsconfig.json -c ./tslint.json",
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.ts",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "rm -rf dist",
"test": "karma start --single-run",
"test:watch": "karma start --auto-watch",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivateOrInternalSupport",
"gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && npm run build:demo && npm run compodoc && git add . && git commit -m \"chore: build demo and docs\" && git push --set-upstream origin gh-pages && git checkout master",
"copyfiles": "copyfiles package.json LICENSE README.md CHANGELOG.md dist/",
"prerelease": "npm test",
"release:git": "git add package.json && git commit --no-verify -m \"feat(version): bump version number\" && standard-version --first-release && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish ./dist",
"pack:npm": "npm run build:dist && npm run copyfiles && npm pack dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"commitmsg": "validate-commit-msg",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StefH/angular-odata-es5.git"
},
"keywords": [
"odata",
"@angular",
"angular",
"rest",
"api",
"service"
],
"author": "Stef Heyenrath",
"license": "MIT",
"bugs": {
"url": "https://github.com/StefH/angular-odata-es5/issues"
},
"homepage": "https://github.com/StefH/angular-odata-es5#readme",
"devDependencies": {
"@angular/animations": ">=8.0.0 <13.0.0",
"@angular/common": ">=8.0.0 <13.0.0",
"@angular/compiler": ">=8.0.0 <13.0.0",
"@angular/compiler-cli": ">=8.0.0 <13.0.0",
"@angular/core": ">=11.0.5",
"@angular/forms": ">=8.0.0 <13.0.0",
"@angular/platform-browser": ">=8.0.0 <13.0.0",
"@angular/platform-browser-dynamic": ">=8.0.0 <13.0.0",
"@angular/platform-server": ">=8.0.0 <13.0.0",
"@angular/router": ">=8.0.0 <13.0.0",
"@types/chai": "^3.4.30",
"@types/core-js": "^0.9.36",
"@types/jasmine": "^2.8.8",
"@types/node": "7.0.14",
"@types/sinon": "^2.3.7",
"@types/sinon-chai": "^2.7.35",
"@types/string": "0.0.28",
"@types/tapable": "^0.2.5",
"@types/webpack": "^2.2.8",
"awesome-typescript-loader": "^3.5.0",
"bootstrap": "^3.4.1",
"chai": "^3.5.0",
"codecov-lite": "^0.1.3",
"codelyzer": "^5.1.0",
"commitizen": "^2.8.1",
"compodoc": "^0.0.41",
"concurrently": "^3.6.1",
"conventional-changelog": "^1.1.24",
"conventional-changelog-cli": "^1.3.22",
"copyfiles": "^1.2.0",
"core-js": "^2.6.1",
"cz-conventional-changelog": "^2.1.0",
"font-awesome": "^4.7.0",
"husky": "^0.13.0",
"imports-loader": "^0.7.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.2.0",
"karma-jasmine": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"phantomjs-prebuilt": "^2.1.16",
"primeicons": "^1.0.0",
"primeng": "^6.0.2",
"rxjs": "^6.5.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"standard-version": "^8.0.1",
"ts-node": "^3.0.2",
"tslint": "^5.11.0",
"tslint-consistent-codestyle": "^1.14.1",
"tslint-loader": "^3.5.4",
"typescript": "~3.5.1",
"validate-commit-msg": "^2.8.0",
"webpack": "^2.4.1",
"webpack-angular-externals": "^1.0.0",
"webpack-dev-server": "^3.1.11",
"webpack-rxjs-externals": "^1.0.0",
"zone.js": "^0.9.1"
},
"peerDependencies": {
"@angular/common": ">=8.0.0 <13.0.0",
"@angular/core": ">=8.0.0 <13.0.0",
"rxjs": "^6.5.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"linq-collections": "^1.0.254"
}
}