-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.68 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
{
"name": "SocialDig.js",
"version": "0.1.3",
"homepage": "https://kylebrumm.com/SocialDig.js",
"author": "Kyle Brumm <[email protected]> (http://kylebrumm.com)",
"description": "Query data from your social profiles with ease.",
"main": "dist/SocialDig.js",
"scripts": {
"browsersync": "browser-sync start --server --files 'css/style.css, js/*.min.js, **/*.html'",
"build": "npm run js:build && npm run css:build",
"css:autoprefix": "postcss --use autoprefixer --output css/style.css css/style.css",
"css:build": "npm run css:compile && npm run css:autoprefix",
"css:compile": "node-sass --output-style compressed scss/style.scss css/style.css",
"css:watch": "watch 'npm run css:build' scss",
"dev": "parallelshell 'npm run watch' 'npm run browsersync'",
"js:build": "npm run js:head && npm run js:main && npm run js:dist",
"js:head": "uglifyjs js/head/*.js -o js/head.min.js",
"js:main": "uglifyjs js/src/*.js -o js/main.min.js",
"js:dist": "uglifyjs dist/SocialDig.js -c -m --mangle-props=1 --comments='@license' -o dist/SocialDig.min.js",
"js:watch": "watch 'npm run js:build' js/head js/src",
"watch": "parallelshell 'npm run js:watch' 'npm run css:watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/kjbrum/SocialDig.js.git"
},
"keywords": [
"social",
"feed",
"media",
"dig",
"profiles",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kjbrum/SocialDig.js/issues"
},
"devDependencies": {
"autoprefixer": "latest",
"node-sass": "latest",
"parallelshell": "latest",
"postcss-cli": "latest",
"uglify-js": "latest",
"watch": "latest"
}
}