forked from njostonehouse/brightspace-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.01 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "brightspace-integration",
"version": "10.5.6",
"description": "Integration project for components consumed by Brightspace.",
"private": true,
"main": "src/index.js",
"scripts": {
"autoprefix": "postcss -c postcss.config.json",
"prebuild": "rimraf dist && mkdir dist",
"build": "npm run build:js && npm run build:sass && npm run build:icons",
"build:js": "browserify -g uglifyify ./src/index.js > ./dist/bsi.js",
"postbuild:js": "npm run uglify:js",
"build:sass": "node-sass --output-style expanded ./src/bsi.scss ./dist/bsi.css",
"postbuild:sass": "npm run autoprefix && npm run uglify:css",
"build:icons": "cpy ./bower_components/vui-icons/images/**/*.png ./dist/images",
"postinstall": "./node_modules/.bin/bower install",
"publish:cdn": "frau-publisher -m lib -t bsi -f './dist/**/*' -k AKIAIZGPQIRSA2WEJEDA --secretvar CDN_SECRET --versionvar TRAVIS_TAG",
"preserve": "npm run build",
"serve": "http-server dist",
"test": "npm run build",
"uglify:css": "cleancss -s ./dist/bsi.css -o ./dist/bsi.min.css -c",
"uglify:js": "uglifyjs ./dist/bsi.js --compress --mangle -o ./dist/bsi.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/brightspace-integration.git"
},
"keywords": [],
"author": "D2L Corporation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Brightspace/brightspace-integration/issues"
},
"homepage": "https://github.com/Brightspace/brightspace-integration",
"dependencies": {
"bower": "^1.5.2"
},
"devDependencies": {
"autoprefixer": "^5.2.0",
"browserify": "^11.2.0",
"clean-css": "^3.4.9",
"cpy": "^3.4.0",
"d2l-intl": "^0.3.2",
"eslint": "^1.6.0",
"eslint-config-brightspace": "0.0.2",
"eslint-plugin-react": "^3.5.1",
"frau-publisher": "^2.5.2",
"http-server": "^0.8.0",
"lie": "^3.0.1",
"node-sass": "^3.3.2",
"postcss-cli": "^2.1.0",
"rimraf": "^2.4.2",
"uglify-js": "^2.6.1",
"uglifyify": "^3.0.1"
}
}