-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.59 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
{
"name": "rural",
"version": "0.2.5",
"description": "A simple helper module / funtions set for normalizing and returning ISO standard details for country information. and referencing country data in a combined format directly in your app, with out the need for external requests and latency. ",
"main": "dist/index.js",
"scripts": {
"test-dist": "mocha ./dist/**/*.test.js",
"test": "mocha --require @babel/register ./src/**/*.test.js",
"babel": "babel src --out-dir dist",
"copy": "cp -R src/datasets/ dist/datasets",
"build": "npm run copy && npm run babel",
"prepublish": "npm run build",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha ./dist/index.test.js --report lcovonly -- -R spec && codecov -t 352272be-ce42-4ce8-b9f5-5f376908c19d"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/leighs-hammer/rural.git"
},
"author": "Leigh Brendon Barnes",
"license": "MIT",
"bugs": {
"url": "https://github.com/leighs-hammer/rural/issues"
},
"homepage": "https://github.com/leighs-hammer/rural#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"husky": "^1.3.0",
"istanbul": "^0.4.5",
"jsonfile": "^4.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.4"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run cover ",
"pre-push": "npm test"
}
}
}