-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1005 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
43
{
"name": "hmpo-i18n",
"version": "3.1.1",
"description": "i18n for node",
"main": "index.js",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"lint": "eslint ./lib",
"unit": "mocha --require test/helpers --recursive ./test/spec",
"test": "npm run lint && npm run unit"
},
"repository": {
"type": "git",
"url": "git://github.com/UKHomeOffice/passports-i18n.git"
},
"keywords": [
"i18n"
],
"author": "Leonard Martin <hello@lennym.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/passports-i18n/issues"
},
"homepage": "https://github.com/UKHomeOffice/passports-i18n",
"dependencies": {
"async": "^2.6.2",
"callsites": "^3.1.0",
"findup": "^0.1.5",
"glob": "^7.1.3",
"lodash": "^4.17.11"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"mocha": "^6.1.4",
"reqres": "^2.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
}
}