-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "google-search-region",
"version": "0.4.1",
"private": true,
"description": "A user script that lets you quickly switch Google search to different region.",
"homepage": "https://github.com/jmlntw/google-search-region",
"bugs": {
"url": "https://github.com/jmlntw/google-search-region/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jmlntw/google-search-region.git"
},
"license": "MIT",
"author": {
"name": "Jimmy Lin",
"email": "[email protected]"
},
"scripts": {
"build:metajs": "inlinejs -o dist/google-search-region.meta.js src/meta.js",
"build:userjs": "inlinejs -o dist/google-search-region.user.js src/user.js",
"build": "npm run build:metajs & npm run build:userjs",
"test:lint": "eslint src/**/*.js",
"test:build": "npm run build:metajs -- -n & npm run build:userjs -- -n",
"test": "npm run test:lint && npm run test:build"
},
"devDependencies": {
"clean-css": "^5.3.0",
"eslint": "^8.37.0",
"indent-string": "^5.0.0",
"inline-js": "^0.8.0",
"inline-js-core": "^0.5.0",
"stringify-object": "^5.0.0"
}
}