-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "redux-flash-messages",
"version": "1.0.0",
"description": "Storing flash messages and removing them via Redux.",
"files": [
"lib"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/42BV/redux-flash-messages.git"
},
"keywords": [
"redux",
"flash-messages"
],
"author": "Maarten Hus",
"license": "ISC",
"bugs": {
"url": "https://github.com/42BV/redux-flash-messages/issues"
},
"homepage": "https://github.com/42BV/redux-flash-messages#readme",
"peerDependencies": {
"redux": "^3.6.0"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@typescript-eslint/eslint-plugin": "1.5.0",
"@typescript-eslint/parser": "1.5.0",
"eslint": "5.15.3",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-prettier": "3.0.1",
"jest": "24.5.0",
"prettier": "1.16.4",
"redux": "4.0.1",
"ts-jest": "24.0.0",
"typescript": "3.3.4000"
},
"scripts": {
"start": "jest test --watch",
"test": "npm run lint && jest test --coverage",
"ts": "tsc --version && tsc",
"coverage": "npm test -- --coverage",
"lint": "eslint \"src/**\"",
"prepublish": "rm -rf lib && npm test && npm run ts"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"node"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/tests/.*\\.(ts|tsx)$"
}
}