-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1011 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@bbp/nexus-sdk",
"version": "1.3.15",
"description": "REST API abstraction for Nexus",
"keywords": [
"rest",
"js",
"node",
"sdk",
"typescript"
],
"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": {
"@bbp/nexus-link": "^1.3.15",
"query-string": "^6.9.0"
},
"publishConfig": {
"access": "public"
}
}