-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
38
39
40
41
42
43
{
"name": "microcookiepkg",
"version": "1.1.1",
"description": "MicroCookie - A minuscule cookie library. Nothing but bones. Compatible with every single browser.",
"main": "dist/microcookie-npm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/10Nates/microcookie.git"
},
"scripts": {
"htmlprep": "sed -i \"\" -e 's/module\\.exports=MicroCookie;//g' dist/microcookie-min.js",
"distprep": "if [ ! -d dist ]; then mkdir dist; fi",
"uglyhtm": "uglifyjs microcookie.js -o dist/microcookie-min.js -m reserved=\\[k,v,p,e,o,d,w,m,y\\] --comments -c passes=5 --ie --v8 && npm run-script htmlprep",
"uglynpm": "uglifyjs microcookie.js -o dist/microcookie-npm.js -m reserved=\\[k,v,p,e,o,d,w,m,y\\] --comments /@/ -c passes=5 --ie --v8 ",
"prepublishOnly": "npm run-script distprep && npm run-script uglyhtm && npm run-script uglynpm"
},
"files": [
"LICENSE",
"dist/microcookie-npm.js",
"package.json",
"package-lock.json",
"README.md"
],
"keywords": [
"cookie",
"cookies",
"manager",
"library",
"browser",
"client",
"simple",
"small",
"tiny",
"micro",
"mini"
],
"author": "Nathan Hedge (10Nates)",
"license": "MIT",
"bugs": {
"url": "https://github.com/10Nates/microcookie/issues"
},
"homepage": "https://github.com/10Nates/microcookie#readme"
}