forked from jclo/jsugar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "jsugar",
"version": "0.2.5",
"description": "A low level REST API Client for SugarCRM",
"main": "index.js",
"scripts": {
"test": "istanbul cover -x ./test/main.js _mocha -- -R spec ./test/main.js",
"check-coverage": "istanbul check-coverage --statements 95 --branches 75 --functions 100 --lines 95",
"display-coverage": "opener ./coverage/lcov-report/index.html",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"precommit": "npm run test && npm run check-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jclo/jsugar.git"
},
"keywords": [
"rest api",
"sugarcrm"
],
"author": {
"name": "jclo",
"email": "jclo@mobilabs.fr",
"url": "http://www.mobilabs.fr/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jclo/jsugar/issues"
},
"homepage": "https://github.com/jclo/jsugar",
"dependencies": {},
"devDependencies": {
"chai": "4.1.2",
"coveralls": "3.0.1",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.12.0",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"opener": "1.4.3"
}
}