-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.21 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
{
"name": "base62-random",
"version": "0.3.5",
"description": "Fast base62 random strings",
"main": "index.js",
"scripts": {
"minify": "uglifyjs index.js -mco base62-random.min.js",
"test": "mocha test/unit* test/perf*",
"test:minify": "set -e; yarn run minify; mocha test/minify*",
"test:coverage": "istanbul cover _mocha test/unit* && istanbul check-coverage",
"release:test": "set -uex; yarn test; yarn run test:minify; yarn npm version prerelease; npm publish --tag testing --access public",
"release:patch": "set -uex; rm -rf node_modules; yarn install; yarn run:test:minify; yarn run test:coverage; npm version patch; git push; npm publish --access public; git push --tags;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deployable/base62-random.git"
},
"keywords": [
"base62",
"fast",
"random",
"tiny"
],
"author": "Matt Hoyle",
"license": "MIT",
"bugs": {
"url": "https://github.com/deployable/base62-random/issues"
},
"homepage": "https://github.com/deployable/base62-random#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.6.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.2",
"uglify-js": "^3.1.3"
}
}