forked from intacct/intacct-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
{
"name": "@intacct/intacct-sdk",
"version": "2.1.1",
"description": "Sage Intacct SDK for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"sage intacct",
"intacct",
"sage",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/intacct/intacct-sdk-js.git"
},
"author": {
"name": "Sage Intacct, Inc.",
"url": "https://www.sageintacct.com"
},
"license": "Apache-2.0",
"homepage": "https://developer.intacct.com",
"bugs": {
"url": "https://github.com/intacct/intacct-sdk-js/issues"
},
"engines": {
"node": ">=12.18.1"
},
"files": [
"/dist"
],
"directories": {
"lib": "dist"
},
"scripts": {
"prebuild": "rimraf dist/*",
"build": "npm run build-ts",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"doc": "rimraf doc && typedoc src/",
"pretest": "npm run build",
"test": "npm run tslint && npm run test-mocha",
"test-mocha": "mocha -require ts-node/register \"test/**/*.ts\"",
"coverage": "nyc npm run test",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/dateformat": "^3.0.1",
"@types/ini": "^1.3.30",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.41",
"@types/uuid": "^8.3.0",
"@types/xml2js": "^0.4.8",
"@types/xmlbuilder": "^0.0.32",
"chai": "~4.2.0",
"mocha": "^8.3.2",
"mock-fs": "^4.13.0",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"typedoc": "^0.17.8",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": "^4.2.4"
},
"dependencies": {
"content-type": "^1.0.4",
"dateformat": "^4.5.1",
"ini": "^1.3.8",
"node-fetch": "^2.6.1",
"striptags": "^3.1.1",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"xml2js": "^0.4.23",
"xmlbuilder": "^12.0.1"
}
}