-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.03 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.03 KB
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
{
"name": "@builton/node-sdk",
"version": "1.1.3",
"description": "Builton Node SDK.",
"main": "src/main.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/ --recursive",
"lint": "./node_modules/.bin/eslint .",
"pre-release": "npm run test && npm run lint",
"release": "release-it",
"dry-release": "release-it --dry-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuiltonDev/node-sdk.git"
},
"author": "Builton <hello@builton.dev> (https://builton.dev/)",
"license": "MIT",
"keywords": [
"Builton",
"AI",
"SDK",
"SAAS",
"On-demand"
],
"bugs": {
"url": "https://github.com/BuiltonDev/node-sdk/issues"
},
"homepage": "https://github.com/BuiltonDev/node-sdk#readme",
"devDependencies": {
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"mocha": "6.2.0",
"nock": "10.0.6",
"release-it": "12.3.6"
},
"dependencies": {
"jwt-decode": "^2.2.0",
"superagent": "^5.1.0"
}
}