-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "maxng-nodejs",
"version": "0.0.3",
"description": "A NodeJS wrapper for the MaxDotNG API",
"main": "index.js",
"files": [
"src",
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "node ./node_modules/standard/bin/cmd.js --fix",
"test": "cross-env NODE_ENV=testing mocha \"test/*.test.js\""
},
"keywords": [
"maxng",
"logistics",
"nodejs",
"automated-deliveries",
"api-endpoints",
"rest-api"
],
"author": "StitchNG <stitchnig@gmail.com> (https://twitter.com/stitchappn)",
"license": "MIT",
"standard": {
"globals": [
"describe",
"it"
]
},
"dependencies": {
"got": "^8.3.2",
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/stitchng/maxdotng.git"
},
"bugs": {
"url": "https://github.com/stitchng/maxdotng/issues"
},
"homepage": "https://github.com/stitchng/maxdotng#readme"
}