-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 937 Bytes
/
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
{
"name": "@highpoint/compile-branding",
"version": "2.0.0",
"description": "Utility to compile HighPoint application branding",
"main": "src/index.js",
"repository": "https://github.com/highpoint-tech/compile-branding",
"author": "HighPoint <support@mhighpoint.com>",
"license": "MIT",
"files": [
"src/*.js"
],
"dependencies": {
"@highpoint/get-ps-token": "^0.1.2",
"@highpoint/merge-scss": "^1.0.0",
"dotenv": "^6.2.0",
"postcss": "^7.0.14",
"postcss-url": "^8.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@highpoint/eslint-config": "^0.1.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.3",
"prettier": "^1.16.4"
},
"scripts": {
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}