forked from parksben/markdown-navbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"scripts": {
"prepublishOnly": "npm run build && npm run changelog",
"build": "npm run compile-js && npm run compile-css",
"compile-css": "npx postcss src/*.css --use autoprefixer -d dist",
"compile-js": "rimraf dist && babel src --copy-files --ignore *.css --source-maps --extensions .js --out-dir dist",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"core-js": "3",
"lodash": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-arrow-functions": "^7.7.4",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"autoprefixer": "^8.0.0",
"conventional-changelog-cli": "^1.3.14",
"postcss-cli": "^5.0.0",
"rimraf": "^2.6.2"
},
"name": "markdown-navbar",
"version": "1.4.3",
"description": "Best markdown navigation bar for React.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/parksben/markdown-navbar.git"
},
"keywords": [
"markdown",
"navigation",
"navigator",
"navbar",
"menu",
"react"
],
"author": "parksben",
"license": "MIT"
}