-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "rangr",
"version": "0.1.0",
"description": "Manage ranges and overlaps between them",
"main": "./dist/es5/index.js",
"scripts": {
"build": "tsc --p ./tsconfig/tsconfig.es5.json && tsc --p ./tsconfig/tsconfig.es6.json",
"prepublish": "npm run test && npm run build",
"test": "TS_NODE_PROJECT=tsconfig/tsconfig.base.json mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc --reporter=lcov --reporter=text npm test"
},
"type": "module",
"exports": {
"require": "./dist/es5/index.js",
"import": "./dist/es6/index.js"
},
"keywords": [
"range",
"set"
],
"files": [
"dist"
],
"author": "Tarun Batra <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/tarunbatra/rangr.git"
},
"bugs": {
"url": "https://github.com/tarunbatra/rangr/issues"
},
"homepage": "https://github.com/tarunbatra/rangr#readme"
}