-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 829 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 829 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
28
29
30
{
"name": "onpushstate",
"version": "0.4.0",
"description": "A seamless history manager with pushstate notification.",
"main": "index.js",
"unpkg": "min.js",
"scripts": {
"build": "npm run minify && npm run size",
"minify": "uglifyjs index.js --comments=/^!/ --compress --mangle -o min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/onpushstate.git"
},
"keywords": [
"history",
"pushstate",
"popstate"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebReflection/onpushstate/issues"
},
"homepage": "https://github.com/WebReflection/onpushstate#readme",
"devDependencies": {
"uglify-js": "^2.8.20"
}
}