-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
61
62
63
64
65
66
67
{
"name": "awoken-bible-usfm",
"version": "0.2.1",
"description": "Bible USFM parser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha test/ --reporter spec",
"cover": "./node_modules/.bin/nyc ./node_modules/.bin/mocha && ./node_modules/.bin/nyc report --reporter lcov --reporter html",
"build": "make",
"docs": "./node_modules/.bin/typedoc --out docs",
"prepare": "git clean -Xf && npm run build"
},
"devDependencies": {
"@types/node": "^12.7.8",
"@types/parsimmon": "^1.10.0",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"mocha": "^7.1.2",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.2"
},
"dependencies": {
"awoken-bible-reference": "^1.10.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/awoken-bible/usfm.git"
},
"keywords": [
"bible",
"usfm",
"parser"
],
"author": "Jamie Terry",
"license": "MIT",
"bugs": {
"url": "https://github.com/awoken-bible/usfm/issues"
},
"homepage": "https://github.com/awoken-bible/usfm#readme",
"files": [
"dist/**/*"
],
"nyc": {
"extension": [
".ts"
],
"include": [
"lib/**/*"
],
"exclude": [
"**/*/*.d.ts"
],
"all": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
}
}