-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.18 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@bullhorn/taurus",
"version": "3.3.1",
"description": "A simple client library for Bullhorn",
"keywords": [
"taurus",
"bullhorn"
],
"homepage": "http://bullhorn.github.io/taurus",
"bugs": {
"url": "https://github.com/bullhorn/taurus/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bullhorn/taurus.git"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">= 10"
},
"peerDependencies": {
"rxjs": ">=6"
},
"dependencies": {
"@bundled-es-modules/uuid": "^3.3.2",
"axios": "^0.21.1",
"localforage": "1.7.3"
},
"devDependencies": {
"@bullhorn/bullhorn-types": "^1.10.0",
"@types/jest": "^22.2.0",
"@types/node": "^14.14.25",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^22.4.3",
"opn-cli": "^3.1.0",
"rollup": "^0.58.0",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-license": "^0.6.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.0",
"rollup-plugin-typescript2": "^0.13.0",
"rollup-plugin-uglify": "^3.0.0",
"rxjs": "~6.4.0",
"semantic-release": "^19.0.2",
"sinon": "9.2.4",
"temp-dir": "^1.0.0",
"ts-jest": "^22.4.0",
"ts-node": "~9.1.1",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-xo": "^0.7.0",
"typedoc": "^0.11.0",
"typescript": "4.1.5"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rm -rf lib",
"lint": "tslint --project tsconfig.json --format stylish",
"test": "jest --config jest.config.json --coverage --no-cache --runInBand",
"test:watch": "jest --config jest.config.json --watch",
"posttest": "npm run lint",
"semantic-release": "semantic-release",
"docs": "typedoc src/index.ts --excludePrivate --mode file --out docs && cp ./taurus-banner.gif ./docs && opn docs/index.html"
}
}