forked from lupomontero/psl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"name": "@imput/psl",
"version": "2.0.4",
"types": "index.d.ts",
"description": "Domain name parser based on the Public Suffix List",
"repository": {
"type": "git",
"url": "[email protected]:imputnet/psl.git"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.spec.js",
"test:browserstack": "node test/browserstack.js",
"watch": "mocha test --watch",
"prebuild": "./scripts/update-rules.js",
"build": "browserify ./index.js --standalone=psl > ./dist/psl.js",
"postbuild": "cat ./dist/psl.js | uglifyjs -c -m > ./dist/psl.min.js",
"commit-and-pr": "commit-and-pr",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline --format=\"%h %s (%an <%ae>)\""
},
"keywords": [
"publicsuffix",
"publicsuffixlist"
],
"author": "imput <[email protected]>",
"license": "MIT",
"dependencies": {
"punycode": "^2.3.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"browserslist-browserstack": "^3.1.1",
"browserstack-local": "^1.5.5",
"chai": "^5.0.0",
"commit-and-pr": "^1.0.4",
"eslint": "^8.56.0",
"JSONStream": "^1.3.5",
"mocha": "^10.2.0",
"porch": "^2.0.1",
"request": "^2.88.2",
"selenium-webdriver": "^4.16.0",
"serve-handler": "^6.1.5",
"uglify-js": "^3.17.4",
"watchify": "^4.0.0"
}
}