This repository was archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 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
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
{
"name": "botkit-middleware-utu",
"version": "1.0.1",
"description": "uTu offical javascript sdk for botkit",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/babel -d dist/ src/ --no-comments",
"watch": "./node_modules/.bin/babel -d dist/ src/ --no-comments --watch",
"test": "BABEL_ENV=testing jest",
"test:cover": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch --coverage --verbose",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/utu-ai/utu-javascript-sdk.git"
},
"author": "uTu <dev@utu.ai>",
"license": "ISC",
"bugs": {
"url": "https://github.com/utu-ai/utu-javascript-sdk/issues"
},
"homepage": "https://github.com/utu-ai/utu-javascript-sdk#readme",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-watch": "^2.0.3",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.0",
"jest": "^19.0.2",
"mocha": "^3.1.2",
"nock": "^9.0.2"
},
"dependencies": {
"babel-cli": "^6.23.0",
"es6-promise": "^4.0.5",
"utu": "next"
},
"eslintConfig": {
"extends": [
"airbnb/base"
],
"rules": {
"import/no-unresolved": 0,
"func-names": 0,
"new-cap": 0,
"no-console": 0
}
},
"jest": {
"collectCoverageFrom": [
"**/src/*.js",
"!**/node_modules/**",
"!**/tests/**"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}
}