-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"author": "Nicolas Iglesias",
"bugs": {
"url": "https://github.com/QAlfy/percyst/issues"
},
"dependencies": {
"ramda": "^0.27.0",
"simple-crypto-js": "^3.0.0"
},
"description": "An unopinionated Redux store persistor with optional encryption that works out of the box",
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.9.0",
"jest": "^26.0.1",
"mockdate": "^2.0.5",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=9.3.0",
"npm": ">=5.8.0"
},
"homepage": "https://github.com/QAlfy/percyst#readme",
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"setupFiles": [
"jest-localstorage-mock"
]
},
"license": "MIT",
"main": "dist/index.js",
"name": "percyst",
"repository": {
"type": "git",
"url": "git+https://github.com/QAlfy/percyst.git"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "rimraf dist/",
"dev": "tsc --build tsconfig.json --watch ",
"lint": "npm run lint.eslint && npm run lint.types",
"lint.eslint": "eslint src/**/* --ext ts",
"lint.types": "tsc --noEmit",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublish": "npm run clean && npm run lint",
"test": "jest src/",
"test:coverage": "npm test -- --coverage",
"test:dev": "jest src/ --watch"
},
"types": "dist/index.d.ts",
"version": "0.1.3"
}