-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "spur-common",
"description": "A Node.JS library of common modules used as a base to most Node.JS applications.",
"version": "4.0.0",
"main": "./src/injector",
"author": {
"name": "Agustin Colchado",
"email": "[email protected]"
},
"contributors": [
{
"name": "Danielle Blank",
"email": "[email protected]"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"spur",
"spur-framework"
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest test --colors",
"test:unit": "jest test/unit --colors",
"test:integration": "jest ./test/integration"
},
"bugs": {
"url": "https://github.com/opentable/spur-common/issues"
},
"homepage": "https://github.com/opentable/spur-common",
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-common.git"
},
"dependencies": {
"bluebird": "3.7.2",
"form-data": "4.0.0",
"lodash.compact": "3.0.1",
"lodash.invokemap": "4.6.0",
"lodash.union": "4.6.0",
"lodash.uniq": "4.5.0",
"spur-config": "2.0.6",
"spur-errors": "1.0.8",
"spur-ioc": "2.1.0",
"superagent": "8.1.2"
},
"devDependencies": {
"eslint": "8.57.0",
"jest": "29.7.0",
"nock": "13.5.4"
}
}