UNPKG

1.5 kBJSONView Raw
1{
2 "name": "scss-bundle",
3 "version": "1.1.0",
4 "description": "Bundling SCSS files to one bundled file.",
5 "main": "index.js",
6 "scripts": {
7 "test": "tsc -p . --noEmit && npm run tslint-test",
8 "tslint-test": "tslint --config ./tslint.json --project . --exclude test/**/* && echo TsLint test successfully passed.",
9 "build": "tsc -p . --newLine lf",
10 "watch": "tsc -w",
11 "test-scss": "node ./dist/bundle-cli.js -e ./example/simple/main.scss -d ./example/output/simple.scss",
12 "prepublish": "npm run build"
13 },
14 "keywords": [
15 "scss",
16 "bundle"
17 ],
18 "author": "Martynas Zilinskas <martynas@quatrodev.com> (https://github.com/MartynasZilinskas)",
19 "contributors": [
20 "Dovydas Navickas <dovydas@quatrodev.com> (https://github.com/DovydasNavickas)"
21 ],
22 "bugs": "https://github.com/QuatroCode/scss-bundle/issues",
23 "repository": "QuatroCode/scss-bundle",
24 "homepage": "https://github.com/QuatroCode/scss-bundle",
25 "license": "AGPL-3.0",
26 "devDependencies": {
27 "@types/archy": "0.0.30",
28 "@types/mkdirp": "^0.3.29",
29 "@types/mz": "0.0.30",
30 "@types/node": "^7.0.8",
31 "@types/node-sass": "3.10.32",
32 "@types/promise": "^7.1.27",
33 "@types/yargs": "6.6.0",
34 "tslint": "^4.5.1",
35 "typescript": "^2.2.1"
36 },
37 "bin": {
38 "scss-bundle": "./dist/bundle-cli.js"
39 },
40 "dependencies": {
41 "archy": "^1.0.0",
42 "mkdirp": "^0.5.1",
43 "mz": "^2.6.0",
44 "node-sass": "^4.5.0",
45 "promise": "^7.1.1",
46 "yargs": "^7.0.2"
47 }
48}