-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1007 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1007 Bytes
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
{
"name": "sentenai",
"version": "0.7.6",
"description": "JavaScript client for Sentenai",
"main": "build/index.js",
"scripts": {
"test": "jest",
"dist": "rollup -c rollup.config.js",
"prepublishOnly": "npm run dist"
},
"files": [
"index.js",
"src/",
"build/index.js"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sentenai/js-sentenai.git"
},
"keywords": [
"sentenai",
"tsdb",
"timeseries",
"database"
],
"author": "Sentenai, Inc.",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sentenai/js-sentenai/issues"
},
"homepage": "https://github.com/sentenai/js-sentenai#readme",
"dependencies": {
"btoa": "1.2.1",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"babel-jest": "26.6.3",
"fetch-mock": "9.10.7",
"jest": "26.6.3",
"rollup": "2.33.2",
"rollup-plugin-babel": "4.4.0"
}
}