-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
{
"name": "@datx/jsonapi-angular",
"version": "3.0.0",
"module": "dist/fesm2015/datx-jsonapi-angular.js",
"es2015": "dist/fesm2015/datx-jsonapi-angular.js",
"esm2015": "dist/esm2015/datx-jsonapi-angular.js",
"fesm2015": "dist/fesm2015/datx-jsonapi-angular.js",
"typings": "dist/datx-jsonapi-angular.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/infinum/datx.git"
},
"bugs": {
"url": "https://github.com/infinum/datx/issues"
},
"homepage": "https://github.com/infinum/datx#readme",
"author": "Infinum JavaScript Team <hello@infinum.com>",
"license": "MIT",
"keywords": [
"datx",
"jsonapi",
"angular"
],
"scripts": {
"ng": "ng",
"prepublish": "npm run build",
"build": "ng build datx-jsonapi-angular && npm run copy-license && npm run copy-readme && node ./prepublish.js",
"copy-license": "cp ./LICENSE ./dist/LICENSE",
"copy-readme": "cp ./README.md ./dist/README.md",
"test": "jest",
"ts:check": "tsc --noEmit",
"test:watch": "jest --watch --coverage"
},
"dependencies": {
"@datx/core": "3.0.0",
"@datx/jsonapi": "3.0.0",
"@datx/jsonapi-types": "3.0.0",
"@datx/network": "3.0.0",
"@datx/utils": "3.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.1.3",
"@angular/animations": "~14.1.2",
"@angular/cli": "~14.1.2",
"@angular/common": "~14.2.0",
"@angular/compiler": "~14.0.1",
"@angular/compiler-cli": "~14.0.1",
"@angular/core": "~14.2.0",
"@angular/forms": "~14.1.2",
"@angular/platform-browser": "~14.2.0",
"@angular/platform-browser-dynamic": "~14.1.2",
"@angular/router": "~14.2.0",
"@types/jest": "^28.1.1",
"@types/node": "^18.7.6",
"jest": "^28.1.1",
"jest-preset-angular": "^12.1.0",
"ng-packagr": "^14.0.1",
"rxjs": "~7.5.5",
"tslib": "~2.4.0",
"typescript": "~4.7.3",
"zone.js": "~0.11.5"
}
}