-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.15 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
51
52
53
54
55
56
57
58
59
60
{
"name": "big-bit-mask",
"version": "2.0.4",
"description": "The infinite bitmask serializable into a base64-like, url-safe string.",
"author": "Aleksej Solomatin",
"homepage": "https://github.com/ASolomatin/big-bit-mask",
"repository": "ASolomatin/big-bit-mask",
"maintainers": [
{
"name": "Aleksej Solomatin <[email protected]> (https://github.com/ASolomatin)",
"email": "[email protected]",
"github-username": "ASolomatin"
}
],
"keywords": [
"bitmask"
],
"license": "MIT",
"private": false,
"main": "dist/big-bit-mask.es6.js",
"module": "dist/big-bit-mask.esm.mjs",
"browser": "dist/big-bit-mask.es5.js",
"types": "dist/big-bit-mask.d.ts",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run lint && npm run build:js",
"build:js": "rollup -c rollup.config.js",
"lint": "tslint --project tsconfig.json --config tslint.json",
"lint:fix": "tslint --project tsconfig.json --config tslint.json --fix",
"test": "mocha --exit -r ts-node/register -r tsconfig-paths/register -c \"src/**/*.ts\"",
"cover": "nyc -x \"test_helper_classes/**/*\" -x \"src/**/*.spec.ts\" -x \"src/**/index.ts\" npm test",
"coveralls": "npm run cover && nyc report --reporter=text-lcov > .nyc_output/lcov.info"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.9",
"@wessberg/rollup-plugin-ts": "^2.0.4",
"chai": "^4.3.4",
"husky": "^3.1.0",
"mocha": "^9.1.4",
"nyc": "^15.0.1",
"rollup": "^2.66.0",
"terser": "^4.7.0",
"ts-node": "^8.10.1",
"tsconfig-paths": "^3.12.0",
"tslint": "^5.20.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.9.10"
}
}