-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "basiq-api",
"version": "0.2.2",
"description": "A NodeJS wrapper around the Basiq.io API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf ./dist ./build ./coverage",
"pretest": "npm run build && tsc test/*.ts --outDir build --module commonjs --sourcemap --lib es2015 --skipLibCheck",
"test": "nyc mocha build/test/**/*.spec.js",
"codecov:publish": "nyc report --reporter=json && codecov -f coverage/*.json",
"lint": "tslint --type-check --project ."
},
"author": "OpenSource - Fluent Development <[email protected]> (https://fluentdevelopment.com.au)",
"license": "BSD-2-Clause",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "4.1.5",
"@types/jws": "^3.2.1",
"@types/mocha": "^5.2.7",
"@types/nock": "^11.1.0",
"@types/qs": "^6.5.0",
"@types/rimraf": "^2.0.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^3.6.1",
"debug": "^4.1.1",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"tslint": "^5.7.0",
"typescript": "^3.7.3"
},
"dependencies": {
"axios": "^0.19.0",
"jws": "^3.1.4",
"qs": "^6.5.1",
"root-require": "^0.3.1"
},
"keywords": [
"basiq",
"basiq.io",
"api"
],
"repository": {
"type": "git",
"url": "git://github.com/FluentDevelopment/basiq-api.git"
},
"bugs": {
"url": "https://github.com/FluentDevelopment/basiq-api/issues"
},
"homepage": "https://github.com/FluentDevelopment/basiq-api"
}