This repository was archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 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
{
"name": "react-bootstrap-navdropdown-active",
"description": "Creare bootstrap NavDropdown component with active",
"author": "Giuseppe Aremare",
"user": "neomusic",
"version": "0.2.0",
"scripts": {
"test": "mocha tests/.setup.js tests/**/*_test.jsx",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
"dist:modules": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"prepublish": "npm run dist:modules",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules/ActiveDropdown.js",
"module": "src",
"jsnext:main": "src",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"chai": "^3.5.0",
"enzyme": "^2.7.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"jest": "^18.1.0",
"mocha": "^3.2.0",
"react-dom": "^15.4.1",
"rimraf": "^2.5.4"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/neomusic/react-bootstrap-navdropdown-active.git"
},
"bugs": {
"url": "https://github.com/neomusic/react-bootstrap-navdropdown-active/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"react-dom",
"react-class-active",
"react-bootstrap",
"active-class"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"react": "^15.4.1"
}
}