forked from kentcdodds/starwars-names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.72 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "random-strings-gen",
"version": "0.0.0-development",
"description": "Generator for random strings",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"test": "cross-env NODE_ENV=test nyc mocha",
"watch:test": "mocha --watch",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "eslint src",
"validate": "npm-run-all --parallel test lint build",
"release": "semantic-release",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "https://github.com/joseacabaneros/github-names.git"
},
"keywords": [
"random",
"string"
],
"files": [
"dist"
],
"author": "Jose A. Cabaneros <[email protected]> (http://joseacabaneros.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joseacabaneros/github-names/issues"
},
"homepage": "https://github.com/joseacabaneros/github-names#readme",
"dependencies": {
"unique-random-array": "1.0.0"
},
"devDependencies": {
"all-contributors-cli": "6.19.0",
"babel-cli": "6.11.4",
"babel-loader": "6.2.4",
"babel-plugin-istanbul": "1.0.3",
"babel-preset-es2015": "6.9.0",
"babel-register": "6.11.6",
"chai": "3.5.0",
"codecov": "3.8.1",
"commitizen": "4.2.2",
"cross-env": "2.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "3.2.0",
"eslint-config-kentcdodds": "^9.0.0",
"ghooks": "1.3.2",
"json-loader": "0.5.4",
"mocha": "3.0.0",
"npm-run-all": "2.3.0",
"nyc": "7.1.0",
"opt-cli": "1.6.0",
"rimraf": "2.5.4",
"semantic-release": "^17.3.0",
"validate-commit-msg": "2.14.0",
"webpack": "1.13.1"
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 100,
"function": 100,
"lines": 100,
"statements": 100,
"reporter": [
"text",
"lcov"
],
"include": [
"src"
],
"sourceMap": false,
"instrument": false,
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015"
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "opt --in pre-commit --exec \"npm run validate\"",
"commit-msg": "opt --in pre-commit --exec \"validate-commit-msg\""
}
}
}