forked from SAP-archive/SDK-NodeJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "recastai",
"version": "4.0.0",
"description": "Recast.AI official SDK in NodeJs",
"main": "lib/index.js",
"types": "index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"test": "mocha spec/test.js --compilers js:babel-register",
"test_coverage": "npm run build && istanbul cover _mocha spec/test.js",
"build": "babel src -d lib",
"lint": "eslint src spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RecastAI/SDK-NodeJs.git"
},
"keywords": [
"recastai"
],
"author": "Jerome Houdan <jerome.houdan@recast.ai> (https://recast.ai)",
"license": "MIT",
"bugs": {
"url": "https://github.com/RecastAI/SDK-NodeJs/issues"
},
"homepage": "https://github.com/RecastAI/SDK-NodeJs#readme",
"devDependencies": {
"babel-cli": "^6.22.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"eslint": "^2.9.0",
"eslint-config-zavatta": "^3.0.1",
"eslint-plugin-import": "^1.6.1",
"sinon": "^1.17.5"
},
"dependencies": {
"babel-runtime": "^6.22.0",
"chai": "^4.1.2",
"form-data": "^1.0.1",
"lodash": "^4.12.0",
"mocha": "^5.1.0",
"nock": "^8.0.0",
"superagent": "^3.8.2",
"superagent-promise": "^1.1.0",
"superagent-proxy": "^1.0.3"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"eslintConfig": {
"extends": [
"zavatta"
],
"rules": {
"camelcase": 0,
"no-undef": 0,
"guard-for-in": 0,
"no-else-return": 0
}
}
}