forked from ihoegen/usfm-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "usfm-js",
"version": "3.4.3",
"description": "A small library that provides functions to convert usfm to JSON and vice-versa",
"main": "lib/index.js",
"scripts": {
"test": "eslint ./src && jest",
"fix": "eslint ./src --fix",
"prebuild": "rm -rf ./lib",
"build": "babel ./src -d ./lib",
"prepare": "if [ ! -d './lib/' ]; then npm run build; fi",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git tag $npm_package_version && git push origin $npm_package_version"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageDirectory": "coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/translationCoreApps/usfm-js.git"
},
"keywords": [
"USFM",
"Scripture",
"JSON",
"Bible"
],
"author": "@unfoldingword",
"license": "ISC",
"bugs": {
"url": "https://github.com/translationCoreApps/usfm-js/issues"
},
"homepage": "https://github.com/translationCoreApps/usfm-js#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^24.9.0",
"deep-equal": "1.0.1",
"eslint": "^5.12.1",
"eslint-config-google": "^0.12.0",
"eslint-plugin-jest": "^22.1.3",
"jest": "^24.9.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}