-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "evrythng-cli",
"version": "1.12.0",
"description": "Extensible command line interface for the EVRYTHNG API.",
"main": "./src/main.js",
"scripts": {
"show-notice": "echo '\n Thank you for using evrythng-cli! Type `evrythng` to get started!\n'",
"postinstall": "npm run --silent show-notice",
"start": "node ./src/main.js",
"lint": "./node_modules/.bin/eslint src/",
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha tests/main.js",
"install-mock-config": "cp ./tests/mockConfig.json /root/.evrythng-cli-config"
},
"bin": {
"evrythng": "bin/cli.js"
},
"author": "EVRYTHNG",
"dependencies": {
"evrythng": "^5.4.0",
"evrythng-swagger": "^1.0.0",
"json-schema-ref-parser": "^5.0.3",
"jsonschema": "^1.2.4",
"lodash": "^4.17.15",
"neat-csv": "^3.0.0",
"semver": "^6.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsdoc": "^3.7.1",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"nyc": "^14.1.1",
"sinon": "^6.1.4"
},
"eslintConfig": {
"extends": "eslint-config-airbnb-base",
"rules": {
"no-console": 0,
"global-require": 0,
"no-param-reassign": [
2,
{
"props": false
}
]
},
"env": {
"browser": true,
"node": true
}
},
"nyc": {
"exclude": [
"tests/*"
],
"reporter": [
"cobertura",
"html",
"lcov",
"text-summary"
],
"report-dir": "./reports"
}
}