This repository has been archived by the owner on Mar 19, 2020. It is now read-only.
forked from danday74/chapter-and-verse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.62 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
57
58
59
60
{
"name": "chapter-and-verse",
"version": "3.0.2",
"description": "Given a bible reference, validates it and returns an object with book, chapter, verse and more",
"author": "danday74",
"license": "ISC",
"main": "index.js",
"browser": "chapterAndVerse.js",
"scripts": {
"verify": "node verify",
"mocha": "istanbul cover -x \"**/*.spec.js\" ./node_modules/mocha/bin/_mocha -- js",
"test": "npm run verify && npm run mocha",
"enforcer": "istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"build": "npm test && npm run enforcer",
"browserify": "webpack --mode production && (gcf || true)",
"postcommit": "cross-env FORCE_COLOR=true npm run browserify",
"prepush": "npm run build"
},
"dependencies": {
"lodash": "^4.17.5"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"chalk": "^2.3.2",
"coveralls": "2.11.16",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"git-commit-file": "^1.3.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"keywords": [
"bible",
"biblical",
"book",
"chapter",
"json",
"object",
"osis",
"ref",
"reference",
"scripture",
"validation",
"validator",
"verse"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danday74/chapter-and-verse.git"
},
"bugs": {
"url": "https://github.com/danday74/chapter-and-verse/issues"
},
"homepage": "https://github.com/danday74/chapter-and-verse#readme",
"comment": "coveralls@2.11.16"
}