-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.65 KB
/
package.json
File metadata and controls
45 lines (45 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
{
"name": "@yami-beta/smart-dropdown-menu",
"version": "0.2.0",
"description": "Library for dropdown menu",
"main": "dist/js/smart-dropdown-menu.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/yami-beta/smart-dropdown-menu.git"
},
"config": {
"latest_release": "https://github.com/yami-beta/smart-dropdown-menu/releases/download/"
},
"scripts": {
"build:sass": "node-sass src/scss -o dist/css",
"build:sass:watch": "node-sass -w src/scss -o dist/css",
"build:js": "NODE_ENV=production node utils/build.js",
"build:js:watch": "node utils/build.js",
"browsersync": "browser-sync start -s --startPath example --files 'example/*.html, dist/js/**/*.js, dist/css/**/*.css'",
"build": "npm-run-all -p build:*",
"dev": "npm-run-all -p build:*:watch browsersync",
"version": "npm run build && npm run update_readme && git add --all",
"update_readme": "sed -E \"s|^(\\[latest-release\\]: ).*|\\1${npm_package_config_latest_release}v${npm_package_version}/smart-dropdown-menu.zip|\" README.md > README.md.new && mv README.md.new README.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Takahiro Abe",
"license": "MIT",
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"browser-sync": "^2.18.1",
"chokidar": "^1.6.1",
"license-list": "^0.1.3",
"node-sass": "^3.13.0",
"npm-run-all": "^3.1.1",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"uglify-save-license": "^0.4.1"
}
}