-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "spur-config",
"description": "Configuration framework to help manage complex application configurations in Node.js.",
"version": "2.0.6",
"main": "./src/SpurConfig",
"author": {
"name": "Agustin Colchado",
"email": "agustin@colchado.com"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"spur",
"spur-framework",
"config",
"configuration"
],
"license": "MIT",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest test/",
"test:dev": "npm run test -- --watch"
},
"bugs": {
"url": "https://github.com/opentable/spur-config/issues"
},
"homepage": "https://github.com/opentable/spur-config",
"repository": {
"type": "git",
"url": "git://github.com/opentable/spur-config.git"
},
"dependencies": {
"lodash.merge": "4.6.2",
"require-all": "3.0.0"
},
"devDependencies": {
"eslint": "8.57.0",
"jest": "29.7.0"
}
}