-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.6 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
{
"name": "react-site-nav",
"version": "0.2.9",
"description": "A kick ass site menu powered by styled components inspired by Stripe.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rimraf lib/* && babel src -d lib --ignore *.test.js",
"lint": "eslint --cache --format 'node_modules/eslint-friendly-formatter' ./src",
"prep-publish": "npm run build && npm version patch -m 'Upgrade to %s' && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusinto/react-site-nav.git"
},
"keywords": [
"react",
"site",
"navigation",
"menu",
"bar",
"animated",
"stripe"
],
"author": "Yusinto Ngadiman",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusinto/react-site-nav/issues"
},
"homepage": "https://github.com/yusinto/react-site-nav#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-styled-components": "^1.7.1",
"babel-preset-minify": "^0.4.3",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"memoize-one": "^4.0.2",
"react": "^16.5.0",
"styled-components": "^3.4.6"
}
}