-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.49 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
{
"name": "@idiosync/telescope",
"version": "2.1.16",
"description": "A functional MVC framework for React",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"test": "jest src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"contributors": ["James Trickey <[email protected]>"],
"repository": {
"type": "git",
"url": "https://github.com/trickeyd/telescope.git"
},
"keywords": ["react", "react-native", "framework", "application", "MVC"],
"files": ["lib/**/*"],
"jest": {
"testPathIgnorePatterns": ["<rootDir>/lib/"],
"moduleFileExtensions": ["ts", "tsx", "js"],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"setupFiles": ["raf/polyfill"],
"setupFilesAfterEnv": ["<rootDir>src/setupTests.ts"]
},
"author": "James Trickey",
"license": "MIT",
"peerDependencies": {
"react": "^16.9.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.isboolean": "^3.0.3",
"lodash.isdate": "^4.0.1",
"lodash.isnull": "^3.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.9.1",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.has": "^4.5.6",
"@types/lodash.isboolean": "^3.0.6",
"@types/lodash.isdate": "^4.0.6",
"@types/lodash.isnull": "^3.0.6",
"@types/lodash.isnumber": "^3.0.6",
"@types/lodash.isplainobject": "^4.0.6",
"@types/lodash.isstring": "^4.0.6",
"@types/lodash.isundefined": "^3.0.6",
"@types/lodash.set": "^4.3.6",
"@types/node": "^13.9.3",
"@types/react": "^16.9.20",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"jest": "^25.1.0",
"jest-environment-jsdom": "^26.1.0",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.13.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
}
}