forked from kentcdodds/starwars-names
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.63 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": "lordofthering-names",
"version": "0.0.0-semantically-released",
"description": "Get random Lord of the rings names",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"lint": "eslint src",
"test": "cross-env NODE_ENV=test nyc mocha",
"watch:test": "mocha --watch --compilers js:babel-core/register",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"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",
"validate": "npm-run-all --parallel test lint build",
"release": "semantic-release pre && npm publish && semantic-release post",
"develop": "npm-run-all --parallel build:main lint watch:test "
},
"repository": {
"type": "git",
"url": "[email protected]:jdinartejesus/lordofthering-names.git"
},
"keywords": [
"random",
"lord",
"of",
"the",
"ring"
],
"files": [
"dist",
"README.md"
],
"author": "Dinarte Jesus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdinartejesus/lordofthering-names/issues"
},
"homepage": "https://github.com/jdinartejesus/lordofthering-names#readme",
"dependencies": {
"unique-random-array": "1.0.0"
},
"devDependencies": {
"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": "1.0.1",
"commitizen": "2.8.2",
"cross-env": "2.0.0",
"cz-conventional-changelog": "1.1.6",
"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",
"rimraf": "2.5.4",
"semantic-release": "4.3.5",
"validate-commit-msg": "2.6.1",
"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": "npm run validate"
}
}
}