-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "@bbp/nexus-link",
"version": "1.3.15",
"description": "A powerful, extendable way of controlling requests/responses to/from Nexus. Inspired by Apollo-link.",
"keywords": [
"observable",
"js",
"node",
"typescript",
"link"
],
"author": "Julien Machon <[email protected]>",
"homepage": "https://github.com/BlueBrain/nexus-js#readme",
"license": "Apache-2.0",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/index.js",
"typings": "lib/index.d.ts",
"directories": {
"dist": "dist",
"es": "es",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlueBrain/nexus-js.git"
},
"scripts": {
"prebuild": "npm run clean",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rm -fr es/ && rm -fr dist/ && rm -fr lib/"
},
"bugs": {
"url": "https://github.com/BlueBrain/nexus-js/issues"
},
"dependencies": {
"rxjs": "^6.5.2"
},
"publishConfig": {
"access": "public"
}
}