-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.12 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": "uvical_extension",
"version": "1.0.1",
"description": "Add the ability to export an iCal file from your UVIC detailed Timetable!",
"main": "main.js",
"dependencies": {
"ical-generator": "1.2.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.5.4",
"eslint": "^5.7.0",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
},
"scripts": {
"build-js": "webpack --env.version=$npm_package_version",
"build-ext": "web-ext build --source-dir=dist",
"build": "npm run build-js && npm run build-ext",
"dev-js": "webpack --env.version=$npm_package_version --watch",
"dev-ext": "web-ext --source-dir=dist run",
"dev": "concurrently --kill-others \"npm:dev-*\"",
"test": "echo \"Error: no test specified\" && exit 1",
"release-github": "npm run build && hub release create $npm_package_version -a web-ext-artifacts/uvicalendar-$npm_package_version.zip"
},
"author": "Maxwell A. Borden",
"license": "MIT"
}