-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
82 lines (82 loc) · 2.05 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": "omnibar",
"version": "2.3.0",
"description": "Extensible search component for React.",
"main": "./dist/index.js",
"types": "./typings/index.d.ts",
"files": [
"dist",
"typings",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vutran/omnibar.git"
},
"scripts": {
"build": "rollup -c",
"format": "npm run format:js && npm run format:md",
"format:js": "prettier --write '{*.js,*.json,{src,__tests__,typings}/**/*.ts{,x}}'",
"format:md": "prettier --parser markdown --write '*.md'",
"precommit": "lint-staged",
"prepublish": "npm run build",
"jest": "jest --coverage --verbose",
"test": "npm run jest"
},
"lint-staged": {
"{*.js,*.md,{src,__tests__,typings}/**/*.ts{,x}}": [
"npm run format",
"git add"
]
},
"keywords": [
"omnibar",
"search",
"navigator"
],
"author": "Vu Tran <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.5.5",
"@types/react": "^15.0.24",
"@types/react-dom": "^15.5.0",
"@types/react-test-renderer": "^15.5.0",
"@types/webspeechapi": "0.0.29",
"babel-jest": "^23.4.2",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.2",
"husky": "^0.14.3",
"jest": "^24.7.1",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.12.0",
"rollup": "^0.63.5",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^24.0.1",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"typescript": "^3.0.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testURL": "http://localhost/"
},
"dependencies": {}
}