forked from fave77/Mathball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 998 Bytes
/
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
{
"name": "mathball",
"version": "0.4.0",
"description": "A JavaScript library for Competitive Programming",
"keywords": [
"competitive-programming",
"computer-science",
"algorithms",
"data-structures",
"javascript",
"mathematical-utilities"
],
"main": "lib/index.js",
"scripts": {
"build": "babel ./src -d ./lib",
"test": "nyc mocha --require babel-core/register",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prepublishOnly": "npm run build"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbiswas101/Mathball.git"
},
"bugs": {
"url": "https://github.com/pbiswas101/Mathball/issues"
},
"author": "Priyabrata Biswas",
"license": "MIT"
}