This repository has been archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.09 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
{
"name": "@stedi-oss/typesuite",
"version": "0.0.0",
"description": "TypeScript client for NetSuite SuiteTalk SOAP API",
"keywords": [
"TypeScript",
"NetSuite",
"SuiteTalk"
],
"author": "Stedi Engineering <engineering@stedi.com>",
"homepage": "https://github.com/Stedi/typesuite#README.md",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Stedi/typesuite.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"gen:all": "npm run gen:types && npm run gen:prettier",
"gen:types": "ts-node scripts/generate-types.ts",
"gen:prettier": "prettier -w src/netsuite_webservices/2019_2/*.ts && prettier -w src/xmlsoap/*.ts",
"clean": "rm -rf dist lib",
"build": "npm run clean && tsc",
"lint": "eslint --ignore *.js src",
"jest": "jest",
"test": "tsc && jest && depcheck .",
"tsc": "tsc",
"prepublishOnly": "tsc",
"release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "26.0.20",
"@types/node": "14.14.25",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.23.0",
"depcheck": "1.3.1",
"eslint": "7.19.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"jest": "26.6.3",
"prettier": "2.2.1",
"semantic-release": "19.0.2",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"dependencies": {
"axios": "0.21.3",
"jsonix": "3.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
144
]
}
},
"volta": {
"node": "14.19.1"
}
}