This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "scrollnav",
"version": "3.0.2",
"title": "scrollnav",
"author": {
"name": "James Wilson",
"email": "[email protected]",
"url": "http://jimmynotjim.com"
},
"description": "A small, dependency free JavaScript plugin for auto generating single page navigation",
"keywords": [
"scrollnav",
"javascript",
"es6",
"jquery",
"navigation",
"scrolling",
"sticky nav",
"scrolling nav"
],
"homepage": "http://scrollnav.com",
"repository": {
"type": "git",
"url": "https://github.com/jimmynotjim/scrollnav.git"
},
"files": [
"dist"
],
"main": "dist/scrollnav.min.umd.js",
"bugs": "https://github.com/jimmynotjim/scrollnav/issues",
"license": "MIT",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"build": "microbundle --compress false --name scrollnav",
"format": "npm-run-all format:*",
"format:source": "prettier --write 'src/**/*.js'",
"format:test": "prettier --write 'test/**/*.js' !/coverage",
"lint": "npm-run-all lint:*",
"lint:source": "eslint 'src/**/*.js'",
"lint:test": "eslint 'test/**/*.js'",
"precommit": "npm run format && npm run lint && npm run build",
"test": "jest --config .jestrc.json --no-cache",
"watch": "microbundle --watch"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@jarmee/jest-dom-custom-matchers": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"microbundle": "^0.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3"
},
"source": "src/scrollnav.js",
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
}
}