-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 KB
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
{
"name": "@highpoint/babel-plugin-meta-html",
"version": "3.0.0",
"description": "Populates meta-html references",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/highpoint-tech/babel-plugin-meta-html.git"
},
"author": "HighPoint <support@mhighpoint.com>",
"license": "MIT",
"keywords": [
"PeopleSoft",
"Babel"
],
"files": [
".env-sample",
"src/**/*"
],
"dependencies": {
"@highpoint/get-ps-token": "^0.1.1",
"find-cache-dir": "^2.0.0",
"mkdirp": "^0.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@highpoint/eslint-config": "^0.1.1",
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"eslint": "^5.4.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-mocha": "^5.2.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"prettier": "^1.14.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"scripts": {
"test": "mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}