This repository was archived by the owner on Feb 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.45 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
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "redux-orm-angular",
"version": "2.0.0",
"description": "Helpers for integrating Angular and Redux ORM",
"main": "index.ts",
"scripts": {
"build": "ng-packagr -p package.json",
"test": "mocha --require ts-node/register --recursive test/*.ts",
"coverage": "nyc npm test",
"publish": "npm publish dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/didomi/redux-orm-angular.git"
},
"keywords": [
"angular",
"redux",
"orm"
],
"ngPackage": {
"lib": {
"entryFile": "index.ts",
"externals": {
"redux-orm": "ORM"
}
}
},
"author": "Jawad Stouli <jawad.stouli@gmail.com> (https://www.didomi.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/didomi/redux-orm-angular/issues"
},
"homepage": "https://github.com/didomi/redux-orm-angular#readme",
"peerDependencies": {
"redux-orm": "^0.9.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"mocha": "^3.4.2",
"ng-packagr": "^1.6.0",
"nyc": "^11.0.2",
"redux": "^3.7.0",
"redux-orm": "^0.9.3",
"ts-node": "^3.1.0",
"typescript": "^2.3.4"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"html",
"text-summary"
]
}
}