forked from Khan/translation-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "translation-assistant",
"version": "0.0.2",
"description": "Translation assistant for perseus exercises",
"main": "lib/translation-assistant.js",
"scripts": {
"lint": "eslint src tests",
"test": "mocha --require @babel/register tests",
"test:coverage:codecov": "nyc --reporter=lcovonly mocha --require @babel/register tests",
"test:coverage": "nyc --reporter=html --reporter=text mocha --require @babel/register tests",
"build:add": "git add lib/",
"build": "babel src --out-dir lib",
"build:coverage": "babel src --out-dir lib --plugins=istanbul",
"watch_test": "mocha --watch --watch-extensions js --require @babel/register tests",
"watch_build": "babel --watch src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/Khan/translation-assistant"
},
"author": "Kevin Barabash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Khan/translation-assistant/issues"
},
"homepage": "https://github.com/Khan/translation-assistant",
"devDependencies": {
"@babel/cli": "^7.4",
"@babel/core": "^7.4",
"@babel/preset-env": "^7.4",
"@babel/register": "^7.4",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.0.0",
"core-js": "^3.0.1",
"eslint": "^7.10.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint",
"build",
"test",
"build:add"
]
}