-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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
{
"name": "react-navbar",
"version": "3.0.0",
"description": "React.js component rendering a translatable menu bar with Twitter Bootstrap Navbar HTML markup",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json src/*.{ts,tsx} test/*.{ts,tsx}",
"prepublish": "npm run build",
"pretest": "npm run lint",
"tdd": "mocha -r ts-node/register -r tests/helpers/enzyme --watch-extensions ts,tsx -b -R min -w tests/*.spec.*",
"test": "mocha -r ts-node/register -r tests/helpers/enzyme -b tests/*.spec.*"
},
"repository": {
"type": "git",
"url": "https://github.com/ikr/react-navbar.git"
},
"keywords": [
"TypeScript",
"reactjs",
"component",
"react-component",
"html",
"browser",
"control",
"widget",
"twitter-bootstrap",
"menu",
"navigation",
"nav",
"navbar",
"hamburger",
"i18n",
"intl",
"internationalization",
"translatable",
"react-intl",
"responsive"
],
"author": "Ivan Krechetov <ikr@ikr.su>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikr/react-navbar/issues"
},
"homepage": "https://github.com/ikr/react-navbar#readme",
"dependencies": {
"react-intl": "^2.4.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/mocha": "^5.2.5",
"@types/react": "^16.4.10",
"@types/react-intl": "^2.3.9",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"jsdom": "^11.12.0",
"mocha": "^5.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
}
}