-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "cookie-interceptor",
"version": "1.0.0",
"description": "A simple JavaScript utility library for intercepting browser cookies",
"main": "dist/cookie-interceptor.umd.js",
"jsnext:main": "dist/cookie-interceptor.esm.js",
"module": "dist/cookie-interceptor.esm.js",
"unpkg": "dist/cookie-interceptor.umd.min.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c && npm run minify",
"watch": "rollup -w -c",
"open": "opn http://localhost:3000/example/",
"serve": "serve -l 3000 ./",
"start": "npm-run-all -p watch serve open",
"minify": "terser dist/cookie-interceptor.umd.js --comments -c -m -o dist/cookie-interceptor.umd.min.js"
},
"repository": "keqingrong/cookie-interceptor",
"keywords": [
"cookie",
"interceptor"
],
"author": "Qingrong Ke <[email protected]> (https://keqingrong.github.io/)",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.3",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.65.2",
"rollup-plugin-json": "^3.0.0",
"serve": "^10.0.0",
"terser": "^3.10.11"
}
}