-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 942 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 942 Bytes
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
{
"name": "@digipost/pager.js",
"author": "Olav Bjørkøy",
"version": "2.0.0",
"description": "Pager.js runs JavaScript functions based on the current path name. This is useful if you have a traditional website and you want to run specific JS on each page, but still include all JS files on all pages.",
"main": "pager.js",
"scripts": {
"release": "npm run verify:not-published",
"verify:not-published": "! npm show . versions -s --json | grep -q \\\"${npm_package_version}\\\"",
"test": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digipost/pager.js.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/digipost/pager.js/issues"
},
"homepage": "https://github.com/digipost/pager.js#readme",
"devDependencies": {
"karma": "^6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.1.0"
}
}