-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@elie29/store",
"version": "2.0.0",
"author": "Elie NEHME",
"description": "A simple store management for front-end applications",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elie29/store"
},
"bugs": {
"url": "https://github.com/elie29/store/issues"
},
"homepage": "https://github.com/elie29/store",
"keywords": [
"store",
"state",
"store management",
"state management",
"frontend store",
"frontend state"
],
"scripts": {
"tsc": "tsc",
"build": "rm -rf dist && npm run tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info",
"pub": "npm run build && npm publish --access public"
},
"peerDependencies": {
"rxjs": "^7.0"
},
"devDependencies": {
"@types/jest": "^26.0",
"@types/lodash": "^4.14.191",
"coveralls": "^3.1.1",
"jest": "^26.0",
"lodash": "^4.17",
"rxjs": "^7.0",
"ts-jest": "^26.0",
"ts-node": "^10.9.1",
"typescript": "4.9.5"
}
}