forked from kyleschaeffer/toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "toggle-js",
"version": "1.1.0",
"description": "A simple toggle script for menus, accordions, navigation, and more.",
"main": "src/toggle.js",
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/webpack --config webpack.config.js",
"production": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js -p",
"watch": "NODE_ENV=development ./node_modules/.bin/webpack --config webpack.config.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oldrivercreative/toggle.git"
},
"keywords": [
"javascript",
"toggle",
"menu",
"navigation",
"context",
"nav",
"expand"
],
"author": "@kyleschaeffer",
"license": "MIT",
"bugs": {
"url": "https://github.com/oldrivercreative/toggle/issues"
},
"homepage": "https://github.com/oldrivercreative/toggle#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"path": "^0.12.7",
"webpack": "^2.6.0"
}
}