-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
91 lines (91 loc) · 2.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "harvest",
"version": "2.0.3",
"description": "Harvest API client library",
"repository": {
"type": "git",
"url": "https://github.com/simplyspoke/node-harvest.git"
},
"keywords": [
"npm",
"harvest"
],
"module": "./dist/index.js",
"jsnext:main": "./dist/index.js",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"author": "Tristan Fitzgerald",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplyspoke/node-harvest/issues"
},
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "tsc && typedoc --out docs --target es6 --theme minimal --mode file src",
"test": "jest",
"test:watch": "jest --watchAll",
"test:integration": "npm run test:cleanup && jest -i --config=jest.integration.js",
"test:integration:watch": "npm run test:cleanup && jest -i --config=jest.integration.js --watchAll",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"test:cleanup": "ts-node test/test.cleanup",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"dependencies": {
"async": "^3.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"semantic-release": "^15.13.25"
},
"devDependencies": {
"@types/async": "^3.0.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"@types/request-promise": "^4.1.44",
"coveralls": "^3.0.6",
"cz-conventional-changelog": "^3.0.2",
"dotenv": "^8.1.0",
"dts-bundle": "^0.7.3",
"fs-extra": "^8.1.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"validate-commit-msg": "^2.14.0"
},
"engines": {
"node": ">=8.10.0"
}
}