UNPKG

1.39 kBJSONView Raw
1{
2 "name": "cuid",
3 "version": "2.1.3",
4 "description": "Collision-resistant ids optimized for horizontal scaling and performance. For node and browsers.",
5 "author": {
6 "name": "Eric Elliott",
7 "url": "https://ericelliottjs.com"
8 },
9 "main": "index.js",
10 "browser": {
11 "./lib/fingerprint.js": "./lib/fingerprint.browser.js"
12 },
13 "react-native": {
14 "./lib/fingerprint.js": "./lib/fingerprint.react-native.js"
15 },
16 "keywords": [
17 "id",
18 "guid",
19 "uid",
20 "unique id",
21 "uuid"
22 ],
23 "repository": {
24 "type": "git",
25 "url": "https://github.com/ericelliott/cuid.git"
26 },
27 "license": "MIT",
28 "devDependencies": {
29 "browserify": "16.2.2",
30 "eslint": "3.19.0",
31 "karma": "2.0.5",
32 "karma-browserify": "5.3.0",
33 "karma-chrome-launcher": "2.2.0",
34 "karma-tap": "4.1.4",
35 "mkdirp": "0.5.1",
36 "tape": "4.9.1",
37 "uglify-js": "3.4.7",
38 "updtr": "2.0.0",
39 "watchify": "3.11.0",
40 "webworkify": "1.5.0"
41 },
42 "scripts": {
43 "build": "mkdirp dist && browserify index.js -s cuid -o dist/cuid.js && uglifyjs dist/cuid.js -c -m -o dist/cuid.min.js",
44 "lint": "eslint index.js lib test",
45 "test": "npm run lint && npm run test:server && npm run test:browser",
46 "test:browser": "karma start test/karma.conf.js",
47 "test:server": "tape test/**/*.js",
48 "prepare": "npm run build",
49 "update": "updtr"
50 }
51}