forked from ai/nanoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 KB
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": "nanoid",
"version": "1.0.4",
"description": "A tiny (162 bytes), secure URL-friendly unique string ID generator",
"keywords": [
"uuid",
"random",
"id",
"url"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "ai/nanoid",
"browser": {
"./random.js": "./random-browser.js"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chalk": "^2.4.1",
"docdash": "^0.4.0",
"eslint": "^5.0.1",
"eslint-ci": "^0.1.1",
"eslint-config-logux": "^23.0.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-es5": "^1.3.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.2.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.0",
"microtime": "^2.1.8",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"shortid": "^2.2.8",
"size-limit": "^0.18.3",
"svgo": "^1.0.5",
"uuid": "^3.3.2",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"yaspeller-ci": "^1.0.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yarn docs && yaspeller-ci *.md docs/*.html",
"clean": "rimraf docs/ coverage/",
"docs": "jsdoc --configure .jsdocrc *.js",
"lint": "eslint-ci *.js test/*.js",
"test": "jest --coverage && yarn lint && size-limit && yarn spellcheck",
"start": "webpack-dev-server --config test/demo/webpack.config"
},
"pre-commit": [
"lint-staged"
]
}