-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 890 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 890 Bytes
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
{
"name": "WikipeDPLA",
"version": "1.3.1",
"VERSION NOTE": "This version is irrelevant, only the one in app/manifest.json matters.",
"devDependencies": {
"eslint": "^8.45.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.2",
"load-grunt-tasks": "^5.1.0"
},
"private": true,
"scripts": {
"build": "grunt build",
"release": "TAG=v$(jq -r .version app/manifest.json); git tag $TAG && git push --tags && gh release create $TAG && open https://chrome.google.com/webstore/devconsole/65c5bb5e-5259-4ab2-81ec-221099427447/jeblaajgenlcpcfhmgdhdeehjfbfhmml/edit",
"test": "eslint -c .eslintrc.json app/scripts/*.js"
},
"engines": {
"node": ">=0.10.0"
}
}