forked from mnghsn/google-search-sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.02 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
{
"name": "google-search-sidebar",
"version": "0.3.4",
"private": true,
"description": "A user script and user style to move Google search tools to sidebar.",
"homepage": "https://github.com/jmlntw/google-search-sidebar",
"bugs": {
"url": "https://github.com/jmlntw/google-search-sidebar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jmlntw/google-search-sidebar.git"
},
"license": "MIT",
"author": {
"name": "Jimmy Lin",
"email": "[email protected]"
},
"scripts": {
"build:usercss": "inlinejs -o dist/google-search-sidebar.user.css src/user.css",
"build:userjs": "inlinejs -o dist/google-search-sidebar.user.js src/user.js",
"build": "npm run build:usercss & npm run build:userjs",
"test": "npm run build:usercss -- -n & npm run build:userjs -- -n",
"preversion": "npm run test",
"version": "npm run build && git add -A dist"
},
"devDependencies": {
"indent-string": "^4.0.0",
"inline-js": "^0.8.0",
"inline-js-core": "^0.5.0"
}
}