-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "random-hash",
"version": "4.0.1",
"description": "Generate random hashes with a fully customizable charset and configurable length",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"compile": "babel ./lib --out-dir ./dist",
"coverage": "nyc npm test && nyc report --reporter=text-lcov",
"lint": "eslint .",
"prepublish": "rm -rf ./dist && npm run compile",
"preversion": "npm run lint && npm run test",
"report-coverage": "npm run coverage | coveralls",
"test": "mocha --compilers js:babel-core/register",
"travis": "npm run lint && npm run compile && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/PabloSichert/random-hash"
},
"author": "Pablo Sichert <mail@pablosichert.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PabloSichert/random-hash/issues"
},
"homepage": "https://github.com/PabloSichert/random-hash",
"keywords": [
"random",
"hash",
"code generator",
"baseN"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"coveralls": "^2.11.15",
"eslint": "^3.10.2",
"mocha": "^3.1.2",
"nyc": "^9.0.1",
"unexpected": "^10.19.0"
}
}