forked from dan1elhughes/forecast-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "forecast-promise",
"version": "1.3.0",
"keywords": [
"harvest",
"forecast",
"forecast-api",
"forecastapp",
"schedule",
"projects",
"milestones",
"promise"
],
"description": "",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .gitignore .",
"build": "babel src --out-dir dist",
"prepublishOnly": "npm run build",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git://github.com/dan1elhughes/forecast-promise.git"
},
"author": "Dan Hughes",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"moment": "^2.20.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^0.14.3",
"jest": "^23.4.2",
"jest-junit": "^5.1.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.0"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
}
}