-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
30 lines (30 loc) · 868 Bytes
/
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
{
"name": "spacetraders-sdk",
"repository": "https://github.com/notVitaliy/spacetraders-io.git",
"version": "1.9.1",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "yarn clean && tsc",
"watch": "yarn build --watch",
"prepublish": "yarn build",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"test:record": "IS_RECORD=1 npm run test",
"test:playback": "IS_PLAYBACK=1 npm run test",
"test:watch": "jest --detectOpenHandles --runInBand --forceExit --watch",
"ci": "npm run test:playback"
},
"dependencies": {
"axios": "^0.21.1",
"bottleneck": "^2.19.5"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"tslint": "^6.1.3",
"typescript": "^4.2.2"
}
}