-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.17 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
{
"name": "harvey-specter-quotes",
"version": "0.0.0-development",
"description": "Get Random Harvey Specter Quotes",
"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 -d",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"check-coverage": "nyc check-coverage --statements 100 --lines 100 --functions 100 --branches 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"watch:test": "npm t -- -w",
"test": "mocha src/index.test.js --compilers js:babel-register",
"cover": "nyc npm t",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Arjith-Natarajan/harvey-specter-quotes.git"
},
"keywords": [
"suits",
"tv",
"series",
"harvey",
"specter",
"quotes",
"random",
"generator"
],
"author": "Arjith Natarajan <[email protected]> (https://arjith-natarajan.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Arjith-Natarajan/harvey-specter-quotes/issues"
},
"homepage": "https://github.com/Arjith-Natarajan/harvey-specter-quotes#readme",
"dependencies": {
"unique-random-array": "1.0.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.5",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"codecov.io": "0.1.6",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"ghooks": "2.0.4",
"json-loader": "0.5.7",
"mocha": "5.2.0",
"npm-run-all": "4.1.3",
"nyc": "12.0.2",
"rimraf": "2.6.2",
"semantic-release": "^15.6.3",
"travis-deploy-once": "^5.0.1",
"webpack": "4.16.0",
"webpack-cli": "3.0.8"
},
"files": [
"dist",
"README.md"
],
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}