-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "network-as-code",
"version": "4.0.0",
"description": "Network as Code SDK for TypeScript",
"main": "dist/esm/index.js",
"types": "dist/@types/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:esm && npm run addjsextension && npm run build:types",
"build:esm": "node config/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node config/cleanup @types && tsc -p config/tsconfig.types.json",
"addjsextension": "ts-add-js-extension --dir=dist/esm",
"lint": "eslint src/**/* --ext .ts",
"test": "jest",
"integration": "jest -c jest.config.integration.ts"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:nwac/sdk-ts.git"
},
"author": "Sami Lahtinen <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/async-retry": "1.4.8",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"babel-jest": "^29.7.0",
"dotenv": "16.3.1",
"eslint": "^8.53.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"fetch-mock": "9.11.0",
"fetch-mock-jest": "1.5.1",
"jest": "^29.7.0",
"npm-run-all": "4.1.5",
"ts-add-js-extension": "^1.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"async-retry": "1.3.3",
"node-fetch": "3.3.2",
"proxy-agent": "6.3.1"
}
}