-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.05 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
71
72
73
74
75
76
{
"name": "node-retailcrm-api",
"version": "1.0.7",
"description": "RetailCRM API Client",
"main": "./dist/index.js",
"scripts": {
"prepublish": "npm run test && npm run build",
"lint": "eslint src --color",
"pretest": "npm run test:clean && npm run lint",
"test:clean": "rimraf ./coverage",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build:clean": "rimraf ./dist",
"build": "npm run build:clean && cross-env NODE_ENV=production babel ./src --out-dir ./dist",
"prettify": "prettier --write src/**/*.js"
},
"pre-commit": [
"lint",
"test"
],
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Omashu/node-retailcrm-api.git"
},
"keywords": [
"RetailCRM",
"node.js",
"API"
],
"author": "Ilya Gerasimov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Omashu/node-retailcrm-api/issues"
},
"homepage": "https://github.com/Omashu/node-retailcrm-api#readme",
"files": [
"dist"
],
"dependencies": {
"lodash": "^4.17.10",
"request": "^2.87.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"cross-env": "^5.1.6",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^3.0.0",
"jest-cli": "^23.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.3",
"rimraf": "^2.6.2"
}
}