-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "@bullhorn/connect",
"version": "0.0.0-development",
"description": "Connector for intercommunication between bullhorn apps",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"typings": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bullhorn/connect.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Bullhorn"
],
"author": "Brian Kimball <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bullhorn/connect/issues"
},
"homepage": "https://github.com/bullhorn/connect#readme",
"dependencies": {
"post-robot": "^8.0.15",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@types/jest": "^22.0.0",
"@types/node": "^8.0.0",
"jest": "^22.0.0",
"rollup": "^0.54.0",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-node-builtins": "^2.1.0",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.0",
"rollup-plugin-typescript2": "^0.10.0",
"rollup-plugin-uglify": "^2.0.0",
"semantic-release": "^17.3.0",
"temp-dir": "^1.0.0",
"ts-jest": "^22.0.0",
"ts-node": "~4.1.0",
"tslib": "^1.9.0",
"tslint": "~5.9.0",
"typedoc": "^0.9.0",
"typescript": "~2.6.x"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rm -rf lib",
"lint": "tslint --project tsconfig.json --format stylish",
"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"
}
}