-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 959 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 959 Bytes
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
{
"name": "@wellyes/angular-action-creator",
"version": "1.1.1",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/action-creator.d.ts",
"keyworkds": [
"ngrx",
"store",
"action",
"angular"
],
"repository": {
"type": "git",
"url": "git@github.com:Aiscom-LLC/angular-action-creator.git"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint ./src --ext tsx,ts",
"lint:fix": "eslint ./src --ext tsx,ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "AISCOM LLC",
"license": "MIT",
"types": "dist/action-creator.d.ts",
"devDependencies": {
"rollup": "2.55.1",
"rollup-plugin-typescript2": "0.30.0",
"typescript": "4.3.5",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"@ngrx/store": "10.0.1"
},
"files": [
"dist"
]
}