-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.94 KB
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
{
"name": "smartling-api-sdk-nodejs",
"version": "2.30.0",
"description": "Package for Smartling API",
"main": "built/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build:dev": "rm -rf built && tsc --p tsconfig.dev.json && cp -R package.json built",
"build": "rm -rf built && tsc && cp -R package.json built",
"pretest": "eslint . --ext .ts",
"test": "npm run build:dev && nyc mocha --reporter mocha-junit-reporter --recursive built/test/**/*.spec.js",
"test:dev": "npm run build:dev && nyc mocha --recursive built/test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Smartling/api-sdk-nodejs.git"
},
"keywords": [
"smartling",
"api-sdk"
],
"author": "Smartling, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/Smartling/api-sdk-nodejs/issues"
},
"homepage": "https://github.com/Smartling/api-sdk-nodejs#readme",
"dependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^18.19.115",
"cross-fetch": "^3.1.4",
"default-user-agent": "^1.0.0",
"form-data": "^4.0.4",
"merge-deep": "^3.0.3",
"querystring": "^0.2.1",
"string-to-file-stream": "^2.0.0",
"typescript": "^4.9.5",
"semver": "^5.7.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"ansi-regex": "^5.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.10.0",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.0.2",
"nyc": "^17.1.0",
"sinon": "^11.1.2",
"ts-mocha": "^10.0.0",
"braces": "^3.0.3",
"json5": "^1.0.2"
},
"nyc": {
"reporter": [
"lcov"
]
}
}