-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "@sajari/sdk-node",
"version": "5.0.0",
"repository": "[email protected]:github.com/sajari/sdk-node.git",
"author": "Search.io",
"license": "MIT",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"files": [
"README.md",
"LICENSE",
"build/src",
"!build/src/**/*.map"
],
"dependencies": {
"request": "2.88.2"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "17.0.8",
"@types/request": "2.48.5",
"csv-parser": "^3.0.0",
"jest": "^27.4.7",
"ksuid": "^2.0.0",
"msw": "0.23.0",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"clean": "rimraf ./build",
"generate-version": "ts-node generate-version.ts",
"build": "npm run generate-version && tsc -p .",
"format": "prettier --write \"**/*.{js,json,md,ts,yaml}\"",
"setup-examples": "npm link && cd examples && npm install && npm link ../ && cd ../",
"test": "jest",
"test:watch": "jest --watch",
"test-examples": "cd examples && npm test && cd ../"
},
"volta": {
"node": "12.20.0"
}
}