forked from vutran/omnibar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.84 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
{
"name": "omnibar",
"version": "1.0.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",
"precommit": "lint-staged",
"prepublish": "npm run build",
"jest": "jest --coverage --verbose",
"test": "npm run jest"
},
"lint-staged": {
"{*.js,src/**/*.ts{,x}}": [
"prettier --write --tab-width 4 --single-quote --trailing-comma es5",
"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": "^19.2.3",
"@types/node": "^7.0.18",
"@types/react": "^15.0.24",
"@types/react-dom": "^15.5.0",
"@types/react-test-renderer": "^15.5.0",
"@types/webspeechapi": "^0.0.27",
"babel-jest": "^20.0.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"husky": "^0.13.4",
"jest": "^20.0.1",
"lint-staged": "^4.0.0",
"prettier": "^1.4.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"regenerator-runtime": "^0.10.5",
"rollup": "^0.41.6",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^20.0.3",
"ts-loader": "^2.0.3",
"typescript": "^2.3.2",
"webpack": "^2.5.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"dependencies": {}
}