forked from Cubified/PowerSchoolPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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
{
"name": "powerschoolplus",
"version": "3.8.1",
"description": "A general enhancements suite for HCPS PowerSchool.",
"main": "src/app.js",
"scripts": {
"bundle": "node_modules/.bin/browserify src/app.js -o src/app.bundle.js",
"transform": "node_modules/.bin/babel src/app.bundle.js -o src/app.es5.js",
"minify": "node_modules/.bin/uglifyjs --minify -- src/app.es5.js > src/app.bundle.js",
"clean": "node_modules/.bin/rimraf src/app.es5.js",
"build": "npm run bundle && npm run transform && npm run minify && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cubified/PowerSchoolPlus.git"
},
"keywords": [
"powerschool",
"hcps",
"grades",
"calculator"
],
"author": "Cubified",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Cubified/PowerSchoolPlus/issues"
},
"homepage": "https://github.com/Cubified/PowerSchoolPlus#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"browserify": "^14.0.0",
"rimraf": "^2.5.4",
"uglify-js": "^2.7.5"
}
}