-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
{
"name": "react-select-item",
"version": "3.1.0",
"description": "Easy select and customazible component for latest React. With search, writed by ES6.",
"main": "dist/react-select-item.js",
"repository": {
"type": "git",
"url": "https://github.com/BusinessDuck/react-select-item.git"
},
"scripts": {
"build": "node fuse dist",
"serve": "npm-run-all --parallel dev test",
"dev": "node fuse dev",
"example": "node fuse example",
"test": "node fuse tests",
"test:watch": "node fuse tests:watch"
},
"author": "Dmitriy Yurov",
"license": "ISC",
"bugs": {
"url": "https://github.com/BusinessDuck/react-select-item/issues"
},
"homepage": "https://github.com/BusinessDuck/react-select-item",
"devDependencies": {
"@types/core-js": "^0.9.43",
"@types/jest": "^21.1.2",
"@types/node": "^8.0.32",
"@types/react": "^16.0.10",
"classnames": "^2.2.5",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"fuse-box": "^2.3.3",
"fuse-box-typechecker": "git://github.com/fuse-box/fuse-box-typechecker.git",
"jest": "^21.2.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"ts-jest": "^21.1.0",
"tslib": "^1.7.1",
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"uglify-js": "^3.1.3",
"update-notifier": "^2.2.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleNameMapper": {
"^.+\\.(scss)$": "<rootDir>/utils/SCSSStub.ts"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"transformIgnorePatterns": [
"node_modules/(?!dit-)"
],
"setupFiles": [
"<rootDir>/utils/shim.ts",
"<rootDir>/utils/testConfig.ts"
]
}
}