-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2.07 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
{
"name": "betfair-api-ts",
"version": "0.1.2",
"description": "Simple TypeScript wrapper around Betfair Exchange API that gives type safety",
"repository": {
"type": "git",
"url": "https://github.com/mtimbs/betfair-exchange"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/types/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --ci --verbose",
"lint": "eslint . --ext .js,.ts",
"buildtest": "tsc -p tsconfig.json --noEmit",
"build": "rm -rf lib && rollup -c && tsc --emitDeclarationOnly",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run buildtest && npm run test",
"preversion": "npm run lint && npm run buildtest && npm run test",
"version": "npm run lint && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"betfair",
"typescript",
"exchange"
],
"author": "Michael Timbs",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@stryker-mutator/babel-transpiler": "^4.0.0",
"@stryker-mutator/core": "^4.3.1",
"@stryker-mutator/jest-runner": "^4.3.1",
"@stryker-mutator/typescript": "^4.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^26.6.3",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-module-resolver": "^1.2.0",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"rollup": "^2.36.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}