-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "random-input-generator",
"version": "1.0.0",
"description": "Random JavaScript value generator for testing or seed data.",
"author": "Dan Novograd",
"main": "./distribution/index.js",
"repository": "https://github.com/danielnovograd/random-input-generator",
"bugs": "https://github.com/danielnovograd/random-input-generator/issues",
"scripts": {
"build": "babel index.js -d distribution",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/testSpec.js",
"check-coverage": "cross-env NODE_ENV=test node_modules/.bin/nyc check-coverage --lines 100 --statements 100 --functions 100",
"precommit": "npm run test && npm run check-coverage"
},
"license": "MIT",
"files": [
"distribution/index.js"
],
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-istanbul": "^3.1.2",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^3.1.4",
"husky": "^0.13.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2"
},
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"keywords": ["random", "seed", "data", "generator", "string", "object", "boolean", "number", "array"]
}