forked from obrut/fortnox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.15 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
{
"name": "fortnox-wrapper",
"version": "0.2.5",
"description": "Unofficial Fortnox api-wrapper for customers, articles and invoices.",
"main": "./dist/index.js",
"typings": "./dist/index",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha -r ts-node/register test/*.ts"
},
"author": "Gustaf Ridderstolpe, Enfo Sweden AB",
"repository": "github:obrut/fortnox",
"keywords": [
"fortnox",
"api",
"node"
],
"bugs": "https://github.com/obrut/fortnox/issues",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node-fetch": "^2.6.2",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"register": "0.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"node-fetch": "^2.6.7"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"src/**/*"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true,
"check-coverage": true
}
}