forked from salesforce/akita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.98 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
{
"name": "@datorama/akita",
"version": "3.9.2",
"description": "State Management Tailored-Made for JS Applications",
"schematics": "./schematics/collection.json",
"scripts": {
"release": "standard-version",
"build": "ng-packagr -p package.json && npm run copy:readme && npm run copy:schematics",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:watch": "jest --watch",
"github-pages": "push-dir --dir=playground/dist --branch=gh-pages --overwrite-local",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"copy:readme": "copy README.md dist",
"copy:schematics": "cp -r schematics/src/ dist/schematics",
"commit": "git-cz",
"demo": "cd playground && npm start"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"bugs": {
"url": "https://github.com/datorama/akita/issues"
},
"homepage": "https://github.com/datorama/akita#readme",
"repository": {
"type": "git",
"url": "https://github.com/datorama/akita"
},
"keywords": [
"angular",
"state management",
"react",
"vue",
"typescript",
"javascript",
"rxjs",
"angular store",
"store",
"observable data stores",
"redux"
],
"ngPackage": {
"lib": {
"entryFile": "./akita/public_api.ts",
"languageLevel": [
"dom",
"es2017"
]
},
"whitelistedNonPeerDependencies": [
"schematics-utilities"
]
},
"author": "Netanel Basal",
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"jest-localstorage-mock"
],
"transform": {
"\\.(ts)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.spec.(ts|js)$"
},
"devDependencies": {
"@angular/compiler": "7.2.7",
"@angular/compiler-cli": "7.2.7",
"@angular/core": "7.2.7",
"@commitlint/cli": "7.5.2",
"@commitlint/config-angular": "7.5.0",
"@commitlint/config-conventional": "7.5.0",
"@types/jest": "24.0.9",
"all-contributors-cli": "6.3.0",
"commitizen": "3.0.7",
"copy": "0.3.2",
"husky": "1.3.1",
"jest": "24.1.0",
"jest-localstorage-mock": "2.4.0",
"lint-staged": "8.1.5",
"localforage": "^1.7.3",
"ng-packagr": "4.7.1",
"prettier": "1.16.4",
"push-dir": "0.4.1",
"rxjs": "6.4.0",
"standard-version": "^5.0.2",
"ts-jest": "24.0.0",
"tsickle": "0.34.3",
"typescript": "^3.2"
},
"peerDependencies": {
"rxjs": "^6.3.3"
},
"dependencies": {
"schematics-utilities": "^1.1.1"
},
"license": "Apache License 2.0"
}