-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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": "superhero-name-library",
"version": "1.2.3-semantic-release",
"description": "Get random superhero names",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w",
"test:single": "mocha src/index.test.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/supercoder123/superhero-library.git"
},
"author": "Ashley Fernandes <ashleefernandes@gmail.com> (http://none.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/supercoder123/superhero-library/issues"
},
"homepage": "https://github.com/supercoder123/superhero-library#readme",
"dependencies": {
"unique-random-array": "2.0.0"
},
"devDependencies": {
"chai": "4.2.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"mocha": "6.1.4",
"semantic-release": "^17.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}