-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "@state-management/ngx-state-machine",
"version": "1.0.6",
"description": "An Angular wrapper for simple-state-machine library, integrates the simple-state-machine with Angular’s dependency injection system",
"main": "dist/ngx-state-machine/bundles/ngx-state-machine.umd.js",
"module": "dist/ngx-state-machine/esm2015/index.js",
"es2015": "dist/ngx-state-machine/esm2015/index.js",
"types": "dist/ngx-state-machine/index.d.ts",
"exports": {
".": {
"import": "./dist/ngx-state-machine/esm2015/index.js",
"require": "./dist/ngx-state-machine/bundles/ngx-state-machine.umd.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "ng-packagr -p ng-package.json",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@state-management/simple-state-machine": "1.0.12"
},
"peerDependencies": {
"@angular/core": ">=12.0.0"
},
"devDependencies": {
"@angular/cli": "^12.0.0",
"@types/node": "^14.18.63",
"jest": "^26.0.0",
"ng-packagr": "^12.0.0",
"ts-jest": "^26.0.0",
"typescript": "^4.3.5"
},
"keywords": [
"state-management",
"command-pattern",
"typescript",
"state-machine",
"rxjs",
"angular"
],
"author": "Gopakumar Nair",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/state-management/ngx-state-machine.git"
},
"publishConfig": {
"access": "public"
}
}