-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "@harvest-profit/api-core",
"version": "0.0.4",
"description": "Core Api.",
"main": "dist/index.js",
"private": false,
"dependencies": {
"axios": "^0.18.0",
"js-cookie": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.5.2",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^3.0.4",
"gh-pages": "^1.2.0",
"jest": "^23.4.1",
"jsdoc": "^3.5.5",
"moxios": "^0.4.0"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "rm -rf ./dist/* && babel src -d dist --source-maps",
"test": "jest --coverage",
"build-docs": "jsdoc src/* --configure jsdoc.conf.json --destination docs --readme README.md",
"pre-publish": "yarn run build",
"authenticate": "git config --global user.email $GH_EMAIL && git config --global user.name $GH_NAME",
"publish-docs": "yarn run build-docs && gh-pages -d docs -m '[ci skip] update pages'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarvestProfit/harvest-profit-api-core.git"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"verbose": true,
"testURL": "http://localhost/"
},
"keywords": [
"harvest",
"profit",
"api",
"core"
],
"author": "Harvest Profit",
"license": "MIT",
"bugs": {
"url": "https://github.com/HarvestProfit/harvest-profit-api-core/issues"
},
"homepage": "https://github.com/HarvestProfit/harvest-profit-api-core#readme"
}