This repository was archived by the owner on Dec 21, 2023. 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
77 lines (77 loc) · 2.24 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.24 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
77
{
"name": "@charge-tech/chargejs",
"version": "0.1.0",
"description": "The Charge Core JS implementation.",
"main": "src/index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "NODE_PATH=. NODE_ENV=test mocha --require esm './tests/**/*.test.js'",
"test:watch": "NODE_PATH=. NODE_ENV=test mocha --require esm './tests/**/*.test.js' --watch --recursive",
"test:report": "NODE_PATH=. NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require esm './tests/**/*.test.js'",
"test:watch:report": "NODE_PATH=. NODE_ENV=test nodemon --exec nyc --reporter=lcov --reporter=text mocha --require esm './tests/**/*.test.js'",
"docs": "jsdoc -r src -d ./docs --readme ./README.md",
"document": "jsdoc2md ./src/*.js > DOCS.md",
"lint": "standard",
"lint:fix": "standard --fix",
"lint-fix": "lint:fix",
"semantic-release": "semantic-release",
"commitlint": "commitlint -e $HUSKY_GIT_PARAMS"
},
"author": "nicolas@charge.io",
"license": "MIT",
"standard": {
"env": [
"mocha"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.3.0",
"chai-events": "0.0.3",
"faker": "^5.3.1",
"husky": "^5.0.0-alpha.6",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"mocha": "^7.1.2",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"redis": "^3.0.2",
"semantic-release": "^17.3.8",
"sinon": "^9.1.0",
"sinon-chai": "^3.5.0",
"standard": "^14.3.3"
},
"dependencies": {
"axios": "^0.26.0",
"bluebird": "^3.7.2",
"dot-get": "^1.0.1",
"ein-validator": "^1.0.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"http-status": "^1.5.0",
"https": "^1.0.0",
"lodash": "^4.17.20",
"node-device-detector": "^1.3.11",
"structure": "^2.0.1",
"winston": "^3.2.1"
},
"peerDependencies": {
"awilix-express": "^5.0.0"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charge-tech/chargejs.git"
},
"bugs": {
"url": "https://github.com/charge-tech/chargejs/issues"
},
"homepage": "https://github.com/charge-tech/chargejs#readme"
}