This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.13 KB
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
83
84
85
86
{
"name": "react-bootstrap-xeditable",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"typings": "d.ts/index.d.ts",
"scripts": {
"build": "webpack-cli --config webpack.config.ts",
"start": "webpack-dev-server --config webpack.config.dev.ts",
"test": "jest"
},
"engines": {
"node": ">=6.11.5"
},
"files": [
"dist",
"lib",
"es",
"src",
"d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kunyan/react-bootstrap-xeditable.git"
},
"author": "Kun Yan <kyan@redhat.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kunyan/react-bootstrap-xeditable/issues"
},
"homepage": "https://github.com/kunyan/react-bootstrap-xeditable#readme",
"peerDependencies": {
"react": ">=16.4.1",
"react-dom": ">=16.4.1"
},
"devDependencies": {
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/enzyme-to-json": "^1.5.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^23.3.7",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-test-renderer": "^16.0.3",
"@types/webpack": "^4.4.17",
"@types/webpack-dev-server": "^3.1.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-enzyme": "^7.0.0",
"prettier": "^1.14.3",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-test-renderer": "^16.6.0",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/test/setupTests.ts"
],
"moduleDirectories": [
"node_modules",
"<rootDir>/test"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
]
}
}