-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.69 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
{
"name": "seorsum",
"version": "1.1.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc -p tsconfig.prod.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/kalvinpearce/seorsum.git"
},
"keywords": [
"React",
"seorsum",
"Redux"
],
"author": "Kalvin Pearce",
"license": "ISC",
"bugs": {
"url": "https://github.com/kalvinpearce/seorsum/issues"
},
"homepage": "https://github.com/kalvinpearce/seorsum#readme",
"devDependencies": {
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.21",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"jest": "^24.9.0",
"np": "*",
"prettier": "^1.19.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"dependencies": {
"immer": "^5.0.0"
},
"peerDependencies": {
"@types/react": "^16.9.11",
"react": "*",
"react-dom": "*"
},
"files": [
"lib/**/*"
],
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"src/**/*"
]
}
}