chenyc
2025-12-09 545c24c6a711d71b65f3d4e8122fee3837fb1edc
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
61
62
63
64
65
66
67
68
69
{
  "name": "number-allocator",
  "version": "1.0.14",
  "description": "A library for the unique number allocator",
  "main": "index.js",
  "types": "types/index.d.ts",
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "scripts": {
    "test": "node_modules/.bin/nyc --reporter=lcov --reporter=text ./node_modules/mocha/bin/_mocha",
    "pretest": "standard ./*.js ./lib/**/*.js ./test/*.js | snazzy",
    "codecov": "codecov",
    "browser-build": "rimraf dist/ && mkdirp dist/ && browserify index.js --standalone number-allocator > dist/number-allocator.js && uglifyjs dist/number-allocator.js --compress --mangle --output dist/number-allocator.min.js",
    "typescript-compile-test": "tsc -p test/typescript/tsconfig.json",
    "typescript-compile-execute": "node test/typescript/*.js",
    "typescript-test": "npm run typescript-compile-test && npm run typescript-compile-execute",
    "test-web": "karma start",
    "generate-docs": "node_modules/.bin/jsdoc -d docs lib"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/redboltz/number-allocator.git"
  },
  "author": "Takatoshi Kondo",
  "license": "MIT",
  "keywords": [
    "unique",
    "number",
    "id",
    "value",
    "allocator"
  ],
  "bugs": {
    "url": "https://github.com/redboltz/number-allocator/issues"
  },
  "homepage": "https://github.com/redboltz/number-allocator#readme",
  "dependencies": {
    "debug": "^4.3.1",
    "js-sdsl": "4.3.0"
  },
  "devDependencies": {
    "airtap": "^4.0.1",
    "browserify": "^17.0.0",
    "chai": "^4.2.0",
    "codecov": "^3.8.1",
    "eslint": "^7.18.0",
    "eslint-config-standard": "16.0.2",
    "jsdoc": "^3.6.6",
    "karma": "^6.0.3",
    "karma-browserify": "^8.0.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-mocha": "^2.0.1",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "snazzy": "^9.0.0",
    "standard": "^16.0.3",
    "tslint": "^5.11.0",
    "tslint-config-standard": "^9.0.0",
    "typescript": "^4.1.3",
    "uglify-es": "^3.3.9"
  },
  "standard": {
    "env": [
      "mocha"
    ]
  }
}