-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "menuspy",
"version": "1.3.0",
"title": "MenuSpy",
"author": {
"email": "[email protected]",
"name": "Leonardo Santos"
},
"license": "MIT",
"description": "A JavaScript library to make navigation menus highlight active item based on the scroll position.",
"main": "dist/menuspy.js",
"keywords": [
"nav",
"navigation",
"menu",
"menuspy",
"scrollspy"
],
"docs": "http://leocs.me/menuspy/",
"demo": "http://leocs.me/menuspy/demo",
"bugs": "https://github.com/lcdsantos/menuspy/issues",
"homepage": "http://leocs.me/menuspy/",
"repository": {
"type": "git",
"url": "https://github.com/lcdsantos/menuspy.git"
},
"devDependencies": {
"eslint": "^4.16.0",
"jasmine-core": "^2.9.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"rollup": "^0.55.1",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-eslint": "^4.0.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.3.9"
},
"scripts": {
"start": "npm run dev",
"dev": "npm run build:rollup -- --watch",
"build": "npm run build:rollup && npm run build:minify",
"build:rollup": "rollup -c",
"build:minify": "uglifyjs dist/menuspy.js --comments /^/*!/ --compress --mangle --output dist/menuspy.min.js",
"lint": "eslint \"src/**\"",
"test": "karma start"
}
}