-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.66 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
{
"name": "@modern-dev/jslong",
"version": "0.1.0",
"description": "The jslong - is a pure JavaScript implementation of Long class for representing a 64-bit two's-complement integer value.",
"main": "lib/cjs/index.js",
"module": "lib/es6/index.js",
"typings": "lib/cjs/index.d.ts",
"types": "lib/cjs/index.d.ts",
"scripts": {
"build": "npm run build-cjs && npm run build-es6",
"build-cjs": "tsc --module commonjs --outdir ./lib/cjs",
"build-es6": "tsc --module es6 --outDir ./lib/es6",
"lint": "eslint ./*.ts",
"mocha": "cross-env TS_NODE_FILES=true mocha --exit -r ts-node/register --colors ./*.spec.ts",
"test": "npm run lint && npm run mocha",
"pub": "npm run test && npm run build && npm publish --access public",
"coverage:unit": "nyc npm run test",
"coverage:report": "nyc report --reporter=json > coverage/coverage.json",
"coverage": "npm run coverage:unit && npm run coverage:report"
},
"author": "Bohdan Shtepan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/modern-dev/jslong.git"
},
"keywords": [
"math",
"long",
"closure"
],
"bugs": {
"url": "https://github.com/modern-dev/jslong/issues"
},
"homepage": "https://github.com/modern-dev/jslong#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"ts-node": "^8.6.1",
"typescript": "^3.7.2"
}
}