-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.19 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.19 KB
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
{
"name": "bible-reference-range",
"version": "1.1.1",
"main": "dist",
"types": "index.d.ts",
"repository": "https://github.com/unfoldingWord/translation-helps-rcl.git",
"author": "mannycolon <colonmanuel7@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"docs": "yarn jsdoc -c .jsdoc.json",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"prepublishOnly": "rm -rf ./dist && babel ./src --out-dir ./dist -s inline",
"postpublish": "git tag v$npm_package_version && git push origin v$npm_package_version"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.2",
"deep-equal": "^2.0.5",
"docdash": "^2.0.1",
"jest": "^27.3.1",
"jsdoc": "^4.0.0",
"prettier": "^2.1.2",
"webpack": "4.44.0"
},
"dependencies": {}
}