This repository has been archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
{
"name": "@realgeeks/sassquanch",
"version": "0.0.6",
"description": "Squanch style dependencies and combine into one flat file",
"main": "dist/bin.js",
"bin": {
"sassquanch": "dist/bin.js"
},
"scripts": {
"start": "node dist/bin.js",
"start:dev": "node dist/dev/bin.js",
"build:prod": "webpack --env prod --progress --profile --colors",
"build:dev": "webpack --env dev --progress --profile --colors",
"release:dev": "npx np patch --no-yarn --tag=dev --any-branch",
"release:master": "npx np patch --no-yarn --any-branch",
"dev": "npm run build:dev -- --hot --watch",
"pretty": "prettier-eslint --write \"./src/**/*.js\" \"index.js\"",
"prepare": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealGeeks/sassquanch.git"
},
"author": "Jorge Valdez <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RealGeeks/sassquanch/issues"
},
"homepage": "https://github.com/RealGeeks/sassquanch#readme",
"lint-staged": {
"index.js": [
"npm run pretty",
"git add"
],
"src/**/*.js": [
"npm run pretty",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-loader": "^8.0.4",
"babel-preset-airbnb": "^3.0.1",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier-eslint-cli": "^4.7.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@realgeeks/sass-flatten": "^0.2.9",
"commander": "^2.19.0"
}
}