-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "anid",
"version": "1.0.2",
"description": "Yet another unique alphanumeric id generator",
"main": "dist/anid.js",
"scripts": {
"build": "npm run bundle && npm run minify",
"bundle": "node ./scripts/umd.js Anid ./src/index.js ./dist/anid.js",
"coveralls": "istanbul-coveralls --no-rm",
"lint": "eslint **/*.js",
"minify": "terser dist/anid.js --mangle --toplevel --compress --output dist/anid.min.js",
"prepublish": "npm run lint && npm run build && npm test",
"test": "jest --coverage"
},
"author": "ex-machine",
"homepage": "https://github.com/ex-machine/anid",
"repository": {
"type": "git",
"url": "git+https://github.com/ex-machine/anid.git"
},
"bugs": {
"url": "https://github.com/ex-machine/anid/issues"
},
"license": "MIT",
"keywords": [
"alphabetical",
"alphanumerical",
"alpha-numerical",
"unique",
"id",
"identifier",
"numerical",
"rand",
"random",
"slug",
"string",
"uuid"
],
"devDependencies": {
"copy": "^0.3.2",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"fs-extra": "^7.0.0",
"istanbul-coveralls": "^1.0.3",
"jest": "^23.6.0",
"terser": "^3.8.2"
},
"dependencies": {}
}